fix: refs #7024 fix error on setting local variable #2286

Merged
pablone merged 2 commits from 7024-fixInventorryError into master 2024-04-11 05:55:35 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b2c3442c12 - Show all commits

View File

@ -15,7 +15,7 @@ BEGIN
FROM `entry`
WHERE id = vSelf;
IF vIsBooked THEN
IF vIsBooked AND NOT @isModeInventory THEN
CALL util.throw('Entry is already booked');
END IF;
END$$