- Issue created by @zaporylie
- @zaporylie opened merge request.
- Status changed to Needs review
8 months ago 2:55pm 7 August 2024
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
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();
}
Needs review
1.0
Code