Gerald R.
Gerald R.
But a question I got: Why is the cart not stored?
I just realized that there are two `Cart`: - https://github.com/extcode/cart/blob/main/Classes/Domain/Model/Cart.php - https://github.com/extcode/cart/blob/main/Classes/Domain/Model/Cart/Cart.php The first is the one which could be stored by a payment provider. But the second is needed....
Follow-up: It is possible to solve this. Maybe the email-templates should even be cleaned up (not sure). Because: All those information are stored in the table `tx_cart_domain_model_order_item`. These information are...
Yeah but I think extcode's arguments are reasonable: https://github.com/extcode/cart/pull/572#issuecomment-2395420440 You should adapt your payment provider. Or do you have other plans in the meanwhile @extcode ?
I just realized the following: https://github.com/extcode/cart/blob/cb2a245c1e8fe18c7c0159e17db98d8b30c4cff5/Classes/Domain/Model/Cart.php#L29 The `Extcode\Cart\Domain\Model\Cart` (which is at the moment not stored by default but can be stored by a paymentProvider) has a property `wasOrdered` which is...
@extcode This is a proposal. I would need to update the documentation as well if you think that it's okay.
Close as this is solved by #592 .
Thanks for your contributions! I am wondering whether we need all the ext_tables.sql entries at all any longer as the DB fields nowadays are auto-created via TCA. It does not...