Search found 58 matches

by heural
17 Aug 2023, 14:12
Forum: Help
Topic: Change basket data in basket plugin
Replies: 2
Views: 15266

Re: Change basket data in basket plugin

Thank you! I have another solution found, getting the session-basket and and set the data there: $manager = \Aimeos\MShop::create( $context, 'order/base' ); $sessionBasket = $manager->getSession( 'default' ); foreach($sessionBasket->getProducts() as $pos => $product) { $product->setProjectUser($exte...
by heural
17 Aug 2023, 09:26
Forum: TYPO3 extension
Topic: Second order as logged in user has no payment data
Replies: 3
Views: 31200

Re: Second order as logged in user has no payment data

Hi Aimeos-Team, we have now version 22.10.7 and the problem still exists. Is there a fix in the near future? The "Autofill"-Func is very nice and we would´nt deativate that. And I have deactivate only the payment-section, but the behaviour exists. I think that "no" indicates that...
by heural
14 Aug 2023, 09:13
Forum: Help
Topic: Change basket data in basket plugin
Replies: 2
Views: 15266

Change basket data in basket plugin

Hi Aimeos-Team, we change some custom data at the "setOrder.before"-event to the basket. That works fine so far, but for example we have paypal as the payment provider and we cancel the payment (backlink to our website ) the order is also canceled in aimeos - new order-(base)-id etc. is cr...
by heural
14 Jul 2023, 06:52
Forum: Help
Topic: Mini-Basket Tax
Replies: 1
Views: 14927

Mini-Basket Tax

Hi Aimeos-Team,

i try to show the taxrates in the mini-basket, but the values of "taxrates" are 0.00.

Code: Select all

$tax = $this->miniBasket->getProducts()->sum( 'order.base.product.taxrates' );
Is this a bug or is this the wrong way?

Thank you!
by heural
03 Jul 2023, 06:13
Forum: Help
Topic: Mini basket should empty on confirmation page
Replies: 1
Views: 3972

Mini basket should empty on confirmation page

Hi Aimeos-Team,

I have a feature request ;)
The mini basket content should empty (also the sum quantity to 0) on the checkout confirmation page.

Thank you!
by heural
31 May 2023, 09:37
Forum: Help
Topic: Get product and catalog from order/product in confirmation template
Replies: 3
Views: 3144

Re: Get product and catalog from order/product in confirmation template

Ok thank you. That are my thoughts also, but in the docu/configure there are no decorator-params for html-client/checkout/confirm, only overwrite the standard impl: https://aimeos.org/docs/latest/config/client-html/checkout-confirm/#name So that should be: client/html/checkout/confirm/decorators/(gl...
by heural
31 May 2023, 06:15
Forum: Help
Topic: Relationship table mshop_product and mshop_media
Replies: 1
Views: 2289

Re: Relationship table mshop_product and mshop_media

Aimeos has a "domain driven design", look here https://aimeos.org/docs/latest/models/managing-items/
Try table "mshop_product_list" and datasets with domain "media" , "refid" is the foreign key of the media table
by heural
30 May 2023, 14:26
Forum: Help
Topic: Get product and catalog from order/product in confirmation template
Replies: 3
Views: 3144

Get product and catalog from order/product in confirmation template

Hi Aimeos-Teams, for google tag manager tracking purposes, I need the catalog(s) in the order confirmation template (client/html/checkout/confirm/body) for each product. Is there a way to retrieve the product item "MShop/Product/Item/Standard" and the attached catalog(s) withhin the iterat...
by heural
23 May 2023, 07:14
Forum: Help
Topic: Expose custom variable from decorator to the view
Replies: 2
Views: 2399

Re: Expose custom variable from decorator to the view

Thank you, this was helpful!
by heural
12 May 2023, 09:05
Forum: Help
Topic: Expose custom variable from decorator to the view
Replies: 2
Views: 2399

Expose custom variable from decorator to the view

Hi Aimeos-Team,

how can I add custom var´s from an Frontend-Controller-Decorator class to the desired view?

Maybe from an Controller/Frontend/Basket-Decorator to the view (template) "client/html/basket/standard/body"?

Thank you!