Search found 39 matches

by yeh
27 Sep 2022, 13:36
Forum: Help
Topic: Stock import CSV mapping
Replies: 2
Views: 759

Stock import CSV mapping

I can see there is a stock import job. There are a number of options to control the various aspects of this, but I can't find what the mapping should be for the CSV file https://aimeos.org/docs/2022.x/config/controller-jobs/stock-import/#csv Is it similar to the main product import CSV with just the...
by yeh
27 Sep 2022, 12:16
Forum: Help
Topic: CSV Product Options
Replies: 2
Views: 653

CSV Product Options

I'm currently setting up my CSV import mapping and cannot see anywhere to set product options (https://aimeos.org/docs/2022.x/manual/p ... s/#options).

Is there a mapping option for these or do they have to be set manually using jqadm?
by yeh
22 Sep 2022, 16:15
Forum: Help
Topic: What are product.lists.* and catalog.lists.*?
Replies: 5
Views: 1177

Re: What are product.lists.* and catalog.lists.*?

Okay so should I use:

Code: Select all

'media' => [
  1 => 'media.url',
  2 => 'product.lists.datestart',
  3 => 'product.lists.dateend',
]
To add start and end dates to a media item? And/or similar for prices to ensure they apply on a certain date/time?
by yeh
21 Sep 2022, 12:53
Forum: Help
Topic: What are product.lists.* and catalog.lists.*?
Replies: 5
Views: 1177

Re: What are product.lists.* and catalog.lists.*?

Thanks for your reply, I think I understand this now. These lists relate to the various items that can be found in the "Types" menu on the admin pages. Is the product.lists.config the value that should be set for the list item? So if I wanted to set product weight I could have CSV columns ...
by yeh
20 Sep 2022, 13:50
Forum: Help
Topic: What are product.lists.* and catalog.lists.*?
Replies: 5
Views: 1177

What are product.lists.* and catalog.lists.*?

I'm looking at altering the columns on the product import CSV file, but am a little confused as to what the products.lists.* and catalog.lists.* items are? I understand that in the product price you can set the start and end dates for a particular price like this (I think): 'price' => [ // ... 10 =>...
by yeh
01 Sep 2022, 15:06
Forum: Help
Topic: Decorator to use when importing products via CSV
Replies: 4
Views: 1157

Re: Decorator to use when importing products via CSV

Thanks for the feedback. I have decided to look at overriding the Aimeos\Controller\Common\Product\Import\Csv\Processor\* classes as I also need to compare existing product data with what is being uploaded via CSV before making changes. Basically I would like to set the product status to review if c...
by yeh
30 Aug 2022, 14:26
Forum: Help
Topic: Decorator to use when importing products via CSV
Replies: 4
Views: 1157

Re: Decorator to use when importing products via CSV

Okay that looks like it might work. Is it possible to find out the method being used (CSV import or admin page save) when using the product manager decorator? Also, is it possible to use the view access helper (https://aimeos.org/docs/2022.x/infrastructure/view-helpers/#access) from a manager decora...
by yeh
26 Aug 2022, 14:51
Forum: Help
Topic: Decorator to use when importing products via CSV
Replies: 4
Views: 1157

Decorator to use when importing products via CSV

I would like to alter some product attributes after it is saved during a CSV import. What is the best way to go about this? I have already implemented decorators on the jqadm/product config which works fine when updating products on the admin pages, but these decorators aren't used when importing vi...
by yeh
25 Aug 2022, 14:55
Forum: Help
Topic: Marketplace and unified basket
Replies: 2
Views: 1094

Re: Marketplace and unified basket

Thanks for the info, I understand how everything works now. I shall probably put some redirections in place and alter the add-to-basket URLs so they add to the default basket. This seems like the best option.

Thanks again
by yeh
16 Aug 2022, 13:30
Forum: Help
Topic: Marketplace and unified basket
Replies: 2
Views: 1094

Marketplace and unified basket

Using the marketplace extension, is the following possible: e.g. if I visit vendor 1 sub site and add a product to basket, I should then be able to visit the default site and/or vendor 2 sub-site and have a unified basket/checkout with all products. I think there are 1 or possibly two ways to achiev...