fix: refs #7834 expeditionScan_Put #2832

Merged
guillermo merged 4 commits from 7834-fixExpeditionScanPut into master 2024-08-06 10:56:11 +00:00
1 changed files with 10 additions and 4 deletions
Showing only changes of commit e03a1914d9 - Show all commits

View File

@ -5,10 +5,16 @@ CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`expeditionScan_Put`
)
BEGIN
IF (SELECT TRUE FROM expedition WHERE id = vExpeditionFk LIMIT 1) THEN
guillermo marked this conversation as resolved Outdated

No està al revés el IF ? igual passa en expeditionPallet

No està al revés el IF ? igual passa en expeditionPallet
REPLACE expeditionScan(expeditionFk, palletFk)
VALUES(vExpeditionFk, vPalletFk);
SELECT LAST_INSERT_ID() INTO vPalletFk;
CALL util.throw('Expedition not exists');
END IF;
IF (SELECT TRUE FROM expeditionPallet WHERE id = vPalletFk LIMIT 1) THEN
CALL util.throw('Pallet not exists');
END IF;
REPLACE expeditionScan(expeditionFk, palletFk)
VALUES(vExpeditionFk, vPalletFk);
SELECT LAST_INSERT_ID() INTO vPalletFk;
END$$
DELIMITER ;