Search found 136 matches

by boettner
09 Feb 2022, 09:57
Forum: TYPO3 extension
Topic: Decorator for Checkout Confirm
Replies: 8
Views: 3924

Re: Decorator for Checkout Confirm

Hi,

it´s

plugin.tx_aimeos.settings.client.html.checkout.confirm.decorators.global {
0 = ConfirmDecorator
}

Best
Robert
by boettner
12 Jan 2022, 13:50
Forum: TYPO3 extension
Topic: How to add a Decorator to catalog detail bought-together and suggest subparts
Replies: 2
Views: 1679

Re: How to add a Decorator to catalog detail bought-together and suggest subparts

Hi and thanks once again for pointing me in the right direction. Did it like so: if ( ! ($boughTogetherProducts = $product->getRefItems('product', null, 'bought-together'))->isEmpty()) { foreach ($boughTogetherProducts->getRefItems('price') as $price) { $taxrate = 19; /** @var \Aimeos\MShop\Price\It...
by boettner
11 Jan 2022, 15:10
Forum: TYPO3 extension
Topic: How to add a Decorator to catalog detail bought-together and suggest subparts
Replies: 2
Views: 1679

How to add a Decorator to catalog detail bought-together and suggest subparts

Hi all, I would like to add my Decorator to the catalog detail bought-together and suggest subparts but it seems there's no configuration option to do so. My goal is price manipulation and it already works in the basket, the checkout and the catalog in general. I also have a Price Rule available but...
by boettner
23 Dec 2021, 08:06
Forum: TYPO3 extension
Topic: Determine subpart inside a Price Rule Provider
Replies: 1
Views: 1136

Determine subpart inside a Price Rule Provider

Good morning,

I want to exclude my Price Rule calculations from the mini basket subpart. How can I detect that the current price the Provider is working on comes from the basket and not the catalog?

Best
Robert.

https://aimeos.org/docs/latest/providers/rules/
by boettner
20 Dec 2021, 07:15
Forum: TYPO3 extension
Topic: Upgrade Aimeos 21.4.1 (TYPO3)
Replies: 2
Views: 1339

Re: Upgrade Aimeos 21.4.1 (TYPO3)

Hi Hans, you have records in mshop_product_list referencing records in mshop_product which arent´t present anymore. Try to identify those records with queries like this. I can´t combine them properly from the top of my head atm. But maybe this helps as a first step: SELECT GROUP_CONCAT(DISTINCT pare...
by boettner
01 Dec 2021, 14:26
Forum: TYPO3 extension
Topic: Price Rule Provider does not work in Basket and Checkout
Replies: 6
Views: 1889

Re: Price Rule Provider does not work in Basket and Checkout

Yes that did something. I deactivated the Taxrates and ProductPrice Plugin. Now changed prices find there way to the basket. But I have some weird caching issues in the catalog although we are in Dev mode and TYPO3 caches are disabled and we force the client not to cache via nginx. But thanks for yo...
by boettner
01 Dec 2021, 12:29
Forum: TYPO3 extension
Topic: Price Rule Provider does not work in Basket and Checkout
Replies: 6
Views: 1889

Re: Price Rule Provider does not work in Basket and Checkout

<?php namespace Aimeos\MShop\Rule\Provider\Catalog; use TYPO3\CMS\Extbase\Utility\DebuggerUtility; class UvcTax extends \Aimeos\MShop\Rule\Provider\Base implements \Aimeos\MShop\Rule\Provider\Catalog\Iface, \Aimeos\MShop\Rule\Provider\Factory\Iface { public function apply(\Aimeos\MShop\Product\Item...
by boettner
01 Dec 2021, 11:52
Forum: TYPO3 extension
Topic: Price Rule Provider does not work in Basket and Checkout
Replies: 6
Views: 1889

Re: Price Rule Provider does not work in Basket and Checkout

Thanks for your response. Currently this the not the case with my provider. Changed tax rates are not reflected in the basket. I just set it up as own provider type and did not add the default catalog provider name. Is it necessary to add the catalog provider or do I additionally have to inherit my ...
by boettner
30 Nov 2021, 08:45
Forum: TYPO3 extension
Topic: Price Rule Provider does not work in Basket and Checkout
Replies: 6
Views: 1889

Price Rule Provider does not work in Basket and Checkout

Hi everyone, I successfully set up a Price Rule Provider as described here: https://aimeos.org/docs/latest/providers/rules/ In our case it calculates country specific tax rates taken from session data which is filled by the user making his/her selection in a globally available delivery destination s...
by boettner
29 Sep 2020, 13:43
Forum: TYPO3 extension
Topic: Changing scaled articles in basket doesn´t reflect item-scale
Replies: 1
Views: 1141

Changing scaled articles in basket doesn´t reflect item-scale

Hi,

when trying to change the amount of a scaled item in the basket it´s always multiplied by 1 not by the articles scale. I guess that´s a bug, right?

Best
Robert.