fix: test
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Andrés 2024-10-02 15:12:57 +02:00
parent 99c70a533a
commit 4e0a81464c
7 changed files with 10 additions and 2 deletions

View File

@ -283,6 +283,7 @@ proc: BEGIN
DROP TEMPORARY TABLE DROP TEMPORARY TABLE
tmp.productionTicket, tmp.productionTicket,
tmp.ticket,
tmp.ticketProblems, tmp.ticketProblems,
tmp.saleProblems, tmp.saleProblems,
tmp.ticketWithPrevia, tmp.ticketWithPrevia,

View File

@ -163,6 +163,6 @@ BEGIN
END LOOP; END LOOP;
CLOSE vCursor; CLOSE vCursor;
DROP TEMPORARY TABLE tItemShelving, tmp.sale; DROP TEMPORARY TABLE tItemShelving;
END$$ END$$
DELIMITER ; DELIMITER ;

View File

@ -18,6 +18,8 @@ BEGIN
SELECT * FROM tmp.saleProblems; SELECT * FROM tmp.saleProblems;
DROP TEMPORARY TABLE tmp.saleProblems; DROP TEMPORARY TABLE
tmp.saleProblems,
tmp.sale;
END$$ END$$
DELIMITER ; DELIMITER ;

View File

@ -105,5 +105,7 @@ BEGIN
SET totalProblems = isFreezed + hasHighRisk + hasTicketRequest + SET totalProblems = isFreezed + hasHighRisk + hasTicketRequest +
isTaxDataChecked + hasComponentLack + hasItemDelay + isTaxDataChecked + hasComponentLack + hasItemDelay +
isTooLittle + hasItemLost + hasRounding + hasItemShortage + isVip; isTooLittle + hasItemLost + hasRounding + hasItemShortage + isVip;
DROP TEMPORARY TABLE tmp.sale;
END$$ END$$
DELIMITER ; DELIMITER ;

View File

@ -375,6 +375,7 @@ module.exports = Self => {
stmts.push(` stmts.push(`
DROP TEMPORARY TABLE DROP TEMPORARY TABLE
tmp.ticket,
tmp.filter, tmp.filter,
tmp.ticketProblems, tmp.ticketProblems,
tmp.sale_getWarnings, tmp.sale_getWarnings,

View File

@ -369,6 +369,7 @@ module.exports = Self => {
stmts.push( stmts.push(
`DROP TEMPORARY TABLE `DROP TEMPORARY TABLE
tmp.ticket,
tmp.filter, tmp.filter,
tmp.ticketProblems`); tmp.ticketProblems`);

View File

@ -213,6 +213,7 @@ module.exports = Self => {
stmts.push( stmts.push(
`DROP TEMPORARY TABLE `DROP TEMPORARY TABLE
tmp.ticket,
tmp.filter, tmp.filter,
tmp.ticketProblems`); tmp.ticketProblems`);