feat: refs #7683 drop temporary table

This commit is contained in:
Robert Ferrús 2024-07-18 12:04:17 +02:00
parent c17214ce05
commit 15adc59ec5
1 changed files with 2 additions and 3 deletions

View File

@ -199,8 +199,6 @@ proc: BEGIN
pb.V = ti.V,
pb.N = ti.N;
DROP TEMPORARY TABLE tItemPackingType;
-- Colecciones segun tipo de encajado
UPDATE tmp.productionBuffer pb
JOIN ticketCollection tc ON pb.ticketFk = tc.ticketFk
@ -278,6 +276,7 @@ proc: BEGIN
tmp.risk,
tmp.ticket_problems,
tmp.ticketWithPrevia,
tItemShelvingStock;
tItemShelvingStock,
tItemPackingType;
END$$
DELIMITER ;