feat: refs #7126 Added manaClaim calc
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-05-10 13:20:15 +02:00
parent 13ed86d26d
commit 4d1031e031
1 changed files with 7 additions and 2 deletions

View File

@ -28,8 +28,11 @@ BEGIN
'MERMA: RECLAMACION FALTAS'
),
(b.buyingValue + b.freightValue + b.comissionValue + b.packageValue) * s.quantity,
IF(c.code = 'manaClaim',
sc.value * s.quantity,
0
)
)
) externalWaste
FROM vn.sale s
JOIN vn.item i ON i.id = s.itemFk
@ -40,9 +43,11 @@ BEGIN
JOIN cache.last_buy lb ON lb.item_id = i.id
AND lb.warehouse_id = w.id
JOIN vn.buy b ON b.id = lb.buy_id
LEFT JOIN saleComponent sc ON sc.saleFk = s.id
LEFT JOIN component c ON c.id = sc.componentFk
WHERE w.isManaged
AND YEAR(t.shipped) = YEAR(util.VN_CURDATE())
AND WEEK(t.shipped, 4) = WEEK(util.VN_CURDATE(), 4)
GROUP BY it.id, s.itemFk;
GROUP BY it.id, i.id;
END$$
DELIMITER ;