ts-mothership

Results 7 comments of ts-mothership

Any updates now?

I think I found the culprit: With #520 the new setting automaticCancellation has been introduced which is enabled per default. When the customer cancels payment, he is redirected to shop...

@boxblinkracer No problem. We were using an old version before, at that time auto cancellation did not exist yet. ;) I'm glad that the disable setting exists, so there's no...

To compare already rounded values I'd suggest a change in https://github.com/mollie/Shopware6/blob/master/src/Service/MollieApi/Builder/MollieLineItemBuilder.php#L119: ``` if ($fixRoundingDifferences) { $mollieOrderLines = $this->roundingDiffFixer->fixAmountDiff( - $order->getAmountTotal(), + round($order->getAmountTotal(), MollieOrderPriceBuilder::MOLLIE_PRICE_PRECISION), $mollieOrderLines, $fixRoundingTitle, $fixRoundingSKU ); } ```

@andreasemer First things first, the documentation should be updated first to make clear how it should work. Not everything is clear until now, maybe shyim first can clarify the intensions...