feat: refs #7683 productionControl #2705

Merged
robert merged 12 commits from 7683-productionControlDeadlock into dev 2024-07-24 12:46:31 +00:00
1 changed files with 2 additions and 3 deletions
Showing only changes of commit 15adc59ec5 - Show all commits

View File

@ -199,8 +199,6 @@ proc: BEGIN
pb.V = ti.V,
pb.N = ti.N;
robert marked this conversation as resolved
Review

Te falta el DROP TEMPORARY TABLE

Te falta el `DROP TEMPORARY TABLE`
DROP TEMPORARY TABLE tItemPackingType;
-- Colecciones segun tipo de encajado
robert marked this conversation as resolved Outdated

Haz el drop bajo del todo, para no tener que repetir DROP TEMPORARY TABLE

Haz el drop bajo del todo, para no tener que repetir DROP TEMPORARY TABLE
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 ;