fix: refs #7024 fix condition sintax
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Pablo Natek 2024-04-10 14:17:08 +02:00
parent 2e15b35fd1
commit 2c5c2ca5a7
1 changed files with 1 additions and 1 deletions

View File

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