7806_devToTest_2332 #2801

Merged
alexm merged 126 commits from 7806_devToTest_2330 into test 2024-07-30 06:14:09 +00:00
1 changed files with 7 additions and 2 deletions
Showing only changes of commit 4d1031e031 - Show all commits

View File

@ -28,7 +28,10 @@ BEGIN
'MERMA: RECLAMACION FALTAS'
),
(b.buyingValue + b.freightValue + b.comissionValue + b.packageValue) * s.quantity,
0
IF(c.code = 'manaClaim',
sc.value * s.quantity,
0
)
)
) externalWaste
FROM vn.sale s
@ -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 ;