feat: refs #7956 itemGetSimilar #2945

Merged
jgallego merged 5 commits from 7956-itemGetSimilar into dev 2024-09-17 05:28:49 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 10f7583587 - Show all commits

View File

@ -48,7 +48,7 @@ BEGIN
GROUP BY itemFk
),
sold AS (
SELECT SUM(s.quantity) AS quantity, s.itemFk
SELECT SUM(s.quantity) quantity, s.itemFk
guillermo marked this conversation as resolved Outdated

Quitar AS

Quitar AS
FROM vn.sale s
JOIN vn.ticket t ON t.id = s.ticketFk
LEFT JOIN vn.itemShelvingSale iss ON iss.saleFk = s.id