refactor: refs #6453 order_confirmWithUser
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-07-08 10:49:39 +02:00
parent 460723bd7a
commit b068327352
1 changed files with 3 additions and 4 deletions

View File

@ -97,18 +97,17 @@ BEGIN
CALL order_checkEditable(vSelf);
-- Check order is not empty
SELECT COUNT(*) > 0 INTO vOk
FROM order_row WHERE order_id = vSelf AND amount > 0;
FROM order_row
WHERE order_id = vSelf
AND amount > 0;
IF NOT vOk THEN
CALL util.throw('ORDER_EMPTY');
END IF;
-- Crea los tickets del pedido
OPEN cDates;
lDates:
LOOP
SET vTicket = NULL;