Search found 12 matches

by SaurabhSharma
26 Feb 2020, 12:09
Forum: Help
Topic: Create new product using aimeos manager
Replies: 9
Views: 17311

Re: Create new product using aimeos manager

Thanks it works. However I am having trouble with product variants (selections). This is the code I am using foreach ($selectionArray as $idx => $selectionData) { $litem = $listManager->createItem()->setType( 'default' ); $refItem = $manager->createItem()->setType( 'default' ); $litem->fromArray( $s...
by SaurabhSharma
23 Feb 2020, 10:38
Forum: Help
Topic: Create new product using aimeos manager
Replies: 9
Views: 17311

Create new product using aimeos manager

I created admin panel for uploading product CSV files. From there I am reading line by line the data and trying to create product table entries. Earlier I directly added entries to tables with mysql but now I want to use Manager. All I've been able to do is $context = \App::make('\Aimeos\Shop\Base\C...