Search found 7 matches

by ralfk
08 Jul 2019, 12:37
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Thanks again,
sorry for the confusion, I thought that I had to update the basket, not only return the newly calculated price, now it seems to work.

Best regards,

Ralf
by ralfk
05 Jul 2019, 14:08
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Hello again, OK, the extra product is out, I reduced everything to this: $config = $this->getServiceItem()->getConfig(); if( !isset( $config['deposit.percent'] ) ) { throw new \Aimeos\MShop\Service\Exception( sprintf( 'Missing configuration "%1$s"', 'deposit.percent' ) ); } $price = $baske...
by ralfk
05 Jul 2019, 11:58
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Hello again, I managed to get the decorator function to work, it is also adding the "deposit product" to the basket, but no matter what I do, the decorator is executed three times, once you go from basket to checkout, once you go to the payment option and last but not least when going to s...
by ralfk
28 Jun 2019, 07:48
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Thanks a lot aimeos,
have a nice weekend

ralfk
by ralfk
26 Jun 2019, 14:44
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Hello again, I took a look at the decorators, and the approach makes sence, I think. Just to make sure I got it right, what I basically have to do is write the decorator, place it in the corresponding or equivalent path of my own Typo3 extension, create an autoload file to register the class (is my ...
by ralfk
25 Jun 2019, 13:56
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

Re: How to implement a down payment / deposit option

Thanks a lot aimeos,
I'll go through the documentation and the examples.

Best regards

ralfk
by ralfk
24 Jun 2019, 13:03
Forum: Help
Topic: How to implement a down payment / deposit option
Replies: 12
Views: 26182

How to implement a down payment / deposit option

Hello all, first of all I want to thank the developpers for the shop they created. I'm new to aimeos and this forum and I don't know exactly if this is exactly the right place to post my question. I'm using version 2018 of aimeos as a typo3 Extension with Typo3 8, but I think this is not a Typo3 que...