You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A race condition can occur when manual stock reception is enabled.
The order won't be seen anymore but the stock doesn't exist yet. There is a possibility for ordering again in the meantime.
Add the following conditions to the existing:
if (manual stock reception) {
if(! received) {
echo "Order in progress";
}
} else {
echo "Needs order";
}
A race condition can occur when manual stock reception is enabled.
The order won't be seen anymore but the stock doesn't exist yet. There is a possibility for ordering again in the meantime.
Add the following conditions to the existing:
Want to back this issue? Place a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: