Skip to content

Commit

Permalink
NTR: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed Dec 2, 2024
1 parent 570428c commit 1cf061e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Transition/TransactionTransitionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function processTransaction(OrderTransactionEntity $transaction, Context
{
$technicalName = ($transaction->getStateMachineState() instanceof StateMachineStateEntity) ? $transaction->getStateMachineState()->getTechnicalName() : '';

if ($this->isFinalOrTargetStatus($technicalName, [OrderTransactionStates::ACTION_PROCESS_UNCONFIRMED])) {
if ($this->isFinalOrTargetStatus($technicalName, [OrderTransactionStates::STATE_UNCONFIRMED])) {
return;
}

Expand Down

0 comments on commit 1cf061e

Please sign in to comment.