Search found 3 matches

by AndreyFedotov
11 Mar 2021, 06:31
Forum: TYPO3 extension
Topic: Aimeos mobile app
Replies: 5
Views: 3643

Re: Aimeos mobile app

How can I manage basket for mobile apps and frontend frameworks like vuejs if basket can be fetched only using cookies. Question is how can I update storage to database and store added products to basket in database and fetch them using user's token. I can do everything except basket storage driver....
by AndreyFedotov
09 Mar 2021, 09:58
Forum: Laravel package
Topic: Import csv with supplier
Replies: 9
Views: 3809

Re: Import csv with supplier

At the moment it's not supported to import suppliers in the product CSV file (categories are). You can implement a processor for suppliers in exactly the same way than for categories: https://github.com/aimeos/ai-controller-jobs/blob/master/controller/common/src/Controller/Common/Product/Import/Csv...
by AndreyFedotov
09 Mar 2021, 05:02
Forum: Laravel package
Topic: Associate existed attributes with created product
Replies: 3
Views: 34616

Associate existed attributes with created product

Hi every one. I have task to create artisan command to create products and populate database with entries from external resource. I've managed to create product using Aimeos Manager like this: $productsManager = MShop::create($this->context, 'product'); $item = $productsManager->create(); $itemArray...