Search found 136 matches

by boettner
21 Mar 2019, 13:46
Forum: TYPO3 extension
Topic: CSV import: text items, different language, same content
Replies: 10
Views: 3986

Re: CSV import: text items, different language, same content

Problem solved, the patch fixes the issue. The data I was testing on was impromperly formatted in the Excel import data. The columns were formatted as Standard on one of the two languages and so leading zeros got stripped. Formatting them as Text and reimporting everything went fine. Many thanks for...
by boettner
19 Mar 2019, 15:15
Forum: TYPO3 extension
Topic: Extending order item with custom field, class doesn´t load
Replies: 7
Views: 3047

Re: Extending order item with custom field, class doesn´t lo

Hm, I can´t seem to get working. As I read here: https://aimeos.org/docs/Developers/Library/Extend_managers_items , there´s definitely more to it but the information in the docs still leave questions open. Is there maybe a code example somewhere covering all aspects, including how to code the saveIt...
by boettner
19 Mar 2019, 10:45
Forum: TYPO3 extension
Topic: Extending order item with custom field, class doesn´t load
Replies: 7
Views: 3047

Re: Extending order item with custom field, class doesn´t lo

To extend the manager and create my custom item base I need a \Aimeos\MShop\Price\Item\Iface for initialization: public function __construct( \Aimeos\MShop\Price\Item\Iface $price, \Aimeos\MShop\Locale\Item\Iface $locale, array $values = [], array $products = [], array $addresses = [], array $servic...
by boettner
19 Mar 2019, 09:28
Forum: TYPO3 extension
Topic: CSV import: text items, different language, same content
Replies: 10
Views: 3986

Re: CSV import: text items, different language, same content

Than I maybe misunderstood your question of what would be the source of my problem? I didn´t know when initially asking here and looking at the patch you offered the fix seemed right but doesn´t work here. The behavior ist still the same like I explained in my first post.
by boettner
19 Mar 2019, 08:50
Forum: TYPO3 extension
Topic: Supplier Information in Products Detail, Basket and Billing
Replies: 9
Views: 4286

Re: Supplier Information in Products Detail, Basket and Bill

The id should be available here: $prodid = $view->param( 'd_prodid' ); If you are in search for what is available in the Client you are working on it may help to look into the Client class you are writing your decorator for: typo3conf/ext/aimeos/Resources/Private/Extensions/ai-client-html/client/htm...
by boettner
19 Mar 2019, 08:28
Forum: TYPO3 extension
Topic: Supplier Information in Products Detail, Basket and Billing
Replies: 9
Views: 4286

Re: Supplier Information in Products Detail, Basket and Bill

You are welcome! you have to assign your variables or query results to the view like so: $view->myQueryresult = $manager->searchItems( $search ) In your template the variable is available as $myQueryresult afterwards. Also be aware when using partials to hand them over from the parent template to th...
by boettner
19 Mar 2019, 07:21
Forum: TYPO3 extension
Topic: Supplier Information in Products Detail, Basket and Billing
Replies: 9
Views: 4286

Re: Supplier Information in Products Detail, Basket and Bill

Hi Izaquiel,

you need to put this kind of logic into a Decorator and send your query result as a view variable like explained here:
https://aimeos.org/docs/Developers/Html ... components

Best
Robert.
by boettner
18 Mar 2019, 12:35
Forum: TYPO3 extension
Topic: Extending order item with custom field, class doesn´t load
Replies: 7
Views: 3047

Extending order item with custom field, class doesn´t load

Hi all, I´m trying to extend mshop_order_base with a custom field for a customer order reference number. I followed the instructions in the manual: https://aimeos.org/docs/Developers/Library/Extend_managers_items So far the DB table gets extended via setup but my class doesn´t seem to get loaded. I ...
by boettner
18 Mar 2019, 09:19
Forum: TYPO3 extension
Topic: CSV import: text items, different language, same content
Replies: 10
Views: 3986

Re: CSV import: text items, different language, same content

I guess the cause is not respecting the language when filling the mapping array, like your fixed in the patch.