- Issue created by @jonathanshaw
- Merge request !165#3515600 Order balance is not updated when order placed β (Open) created by jonathanshaw
The StripePaymentElement's onReturn() method creates the payment and then places and saves the order in a single request. The result is that the order balance is not correct when an order event subscriber runs.
Subscribe to the 'commerce_order.place.post_transition' with no specified weight, and find that $order->getTotalPaid() is null or zero.
Either π onReturn method of StripePaymentElement should not apply "place" transition Active or
\Drupal::service('commerce_payment.order_updater')
$payment_order_updater->updateOrder($order);
Active
1.0
Code