Search found 108 matches

by mohal_04
31 Aug 2018, 06:19
Forum: Laravel package
Topic: Aimeos Customers Data - Saving in Users Table
Replies: 4
Views: 1979

Re: Aimeos Customers Data - Saving in Users Table

aimeos wrote:Besides the mshop_customer_group table but the others will be recreated as soon as you execute the aimeos:setup task
OK thanks! So, no deleting! :D
by mohal_04
28 Aug 2018, 04:39
Forum: Laravel package
Topic: Aimeos Customers Data - Saving in Users Table
Replies: 4
Views: 1979

Re: Aimeos Customers Data - Saving in Users Table

That's the standard table from the Aimeos core but as you correctly state in Laravel and the other frameworks their user tables are used instead. The mshop_customer table is always created by the Aimeos core setup task because it doesn't know what the host application is and if other tables for use...
by mohal_04
24 Aug 2018, 12:10
Forum: Laravel package
Topic: Aimeos Customers Data - Saving in Users Table
Replies: 4
Views: 1979

Aimeos Customers Data - Saving in Users Table

Laravel: 5.6
Aimeos: 2018.04
PHP: 7.1.18

Hi,

I have Aimeos package installed on Laravel. Aimeos DB has `mshop_customer` table but all new customers are saving in Laravel's `users` table.

Can you explain why we have `mshop_customer` table if customer data is not storing into it?

Thanks!
by mohal_04
16 Aug 2018, 08:48
Forum: Laravel package
Topic: Product Import - How to import "selection" products?
Replies: 6
Views: 3087

Re: Product Import - How to import "selection" products?

Anyhow, I love the idea for multiple images and how I can separate them with "New line." Now, I shall go one step further. Is there a way I can store media images locally while importing products? That's up to you. The CSV file only contains relative URLs to the images and you can store t...
by mohal_04
16 Aug 2018, 08:44
Forum: Laravel package
Topic: Product - Delete Multiple Products
Replies: 4
Views: 2101

Re: Product - Delete Multiple Products

aimeos wrote:Yes, it's already on the list: https://github.com/aimeos/ai-admin-jqadm/issues/23
Great!
by mohal_04
16 Aug 2018, 05:34
Forum: Laravel package
Topic: Product Import - How to import "selection" products?
Replies: 6
Views: 3087

Re: Product Import - How to import "selection" products?

The articles must come first because you need them to be added to your database so you can access their ID which needs to be associated to your selection product. You can add several media URLs by listing them in the same field of the CSV separated by new lines (\n) Hi, Yes yes, I totally understan...
by mohal_04
16 Aug 2018, 05:16
Forum: Laravel package
Topic: Product - Delete Multiple Products
Replies: 4
Views: 2101

Re: Product - Delete Multiple Products

You can easily delete multiple products by using deleteItems() of the product manager. This method accepts a list of product IDs. If you want to clean up everything that is associated to the products (categories, images, prices, texts), you can use this code: $productItems = [...]; $catalogListMana...
by mohal_04
15 Aug 2018, 06:27
Forum: Laravel package
Topic: Product - Delete Multiple Products
Replies: 4
Views: 2101

Product - Delete Multiple Products

Laravel: 5.6
Aimeos: 2018.04
PHP: 7.1.18

Hi,

I need to delete more than 1 product from complex Aimeos DB schema. Can you please, guide me how I can do this by just one click? Or if there is any other method of deleting multiple products based on their ID or code?

Please, reply!

Thanks!
by mohal_04
14 Aug 2018, 07:43
Forum: Laravel package
Topic: Product Import - How to import "selection" products?
Replies: 6
Views: 3087

Re: Product Import - How to import "selection" products?

The default mapping listed here contains the "product" section (line 27): https://aimeos.org/docs/Developers/Controller/Import_products_from_CSV#Default_mapping If the "product.lists.type" is "default", all values (separated by new line) in the column for "product...
by mohal_04
09 Aug 2018, 10:35
Forum: Laravel package
Topic: Product Import - How to import "selection" products?
Replies: 6
Views: 3087

Product Import - How to import "selection" products?

PHP: 7.1.18 Laravel: 5.6 Aimeos: 2018.04 Hi, I followed "Import products from CSV" link (given below) and imported all products. Link: https://aimeos.org/docs/Developers/Controller/Import_products_from_CSV But it turned out that I am dealing with Parent-child products, which are "Sele...