feat: refs #6822
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-07-17 10:30:23 +02:00
parent 109770b0a3
commit 2cb8d07aef
1 changed files with 2 additions and 5 deletions

View File

@ -11,9 +11,6 @@ BEGIN
DECLARE vTravelFk INT;
DECLARE vWarehouseFk INT;
DECLARE CONTINUE HANDLER FOR NOT FOUND
SET vDone = TRUE;
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
ROLLBACK;
@ -111,9 +108,9 @@ BEGIN
AND b.quantity = 0;
SET vNewEntry = vNewEntryFk;
COMMIT;
CALL cache.visible_refresh(@c,TRUE,7);
CALL cache.available_refresh(@c, TRUE, 7, util.VN_CURDATE());
COMMIT;
END$$
DELIMITER ;