Use StateItemInterface::isTransitionAllowed before executing state transition

Created on 7 August 2024, 8 months ago

Problem/Motivation

The code for checking whether transition can be applied was written before it was possible to check whether certain transitions are applicable. Given one can override workflow definition and introduce new states there's no point in hardcoding states in conditions but it's better to use the StateItemInterface::isTransitionAllowed method

Steps to reproduce

Proposed resolution

      if (in_array('mark_paid', array_keys($order->getState()
        ->getTransitions()))) {
        $order->getState()->applyTransitionById('mark_paid');
        $order->save();
      }

should become

      if ($order->getState()->isTransitionAllowed('mark_paid')) {
        $order->getState()->applyTransitionById('mark_paid');
        $order->save();
      }

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Needs review

Version

1.0

Component

Code

Created by

🇳🇴Norway zaporylie

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024