fix: refs #7834 expeditionScan_Put
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-08-06 12:51:55 +02:00
parent 54e6c63b8b
commit d1bb77d6ed
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`expeditionScan_Put`
vExpeditionFk INT
)
BEGIN
IF (SELECT TRUE FROM expedition WHERE id = vExpeditionFk LIMIT 1) THEN
IF NOT (SELECT TRUE FROM expedition WHERE id = vExpeditionFk LIMIT 1) THEN
CALL util.throw('Expedition not exists');
END IF;
IF (SELECT TRUE FROM expeditionPallet WHERE id = vPalletFk LIMIT 1) THEN
IF NOT (SELECT TRUE FROM expeditionPallet WHERE id = vPalletFk LIMIT 1) THEN
CALL util.throw('Pallet not exists');
END IF;