7863-devToTest_2434 #2852

Merged
alexm merged 129 commits from 7863-devToTest_2434 into test 2024-08-13 06:50:25 +00:00
1 changed files with 3 additions and 4 deletions
Showing only changes of commit b068327352 - Show all commits

View File

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