fix(ticket_getMovable): refs #7225 stock add ifnull

This commit is contained in:
Alex Moreno 2024-04-24 11:40:24 +02:00
parent 0cd740ce0c
commit eced03f69b
2 changed files with 6 additions and 6 deletions

View File

@ -38,7 +38,7 @@ BEGIN
s.discount, s.discount,
i.image, i.image,
i.subName, i.subName,
il.stock + IFNULL(im.amount, 0) AS movable IFNULL(il.stock,0) + IFNULL(im.amount, 0) AS movable
FROM ticket t FROM ticket t
JOIN sale s ON s.ticketFk = t.id JOIN sale s ON s.ticketFk = t.id
JOIN item i ON i.id = s.itemFk JOIN item i ON i.id = s.itemFk