Skip to content

Commit

Permalink
Merge branch '3.2' into 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Nov 11, 2024
2 parents 3a77875 + b29fcbf commit d0bf4c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG-3.2.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.2.15
* [PayumBundle] remove payment_state processing to confirm orders by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2743

# 3.2.14
* [Pimcore] introduce LocalizedFallbackHelper by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2723
* [Translations] add missing translations by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2721
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public function execute($request): void
$payment = $request->getFirstModel();
$order = $payment->getOrder();
if ($payment->getState() === PaymentInterface::STATE_COMPLETED ||
$payment->getState() === PaymentInterface::STATE_AUTHORIZED ||
$payment->getState() === PaymentInterface::STATE_PROCESSING
$payment->getState() === PaymentInterface::STATE_AUTHORIZED
) {
$this->stateMachineApplier->apply($order, OrderTransitions::IDENTIFIER, OrderTransitions::TRANSITION_CONFIRM);

Expand Down

0 comments on commit d0bf4c0

Please sign in to comment.