refs #6193 feat:modify inventory
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Sergio De la torre 2024-02-23 07:44:25 +01:00
parent 2b19004783
commit 131ae6b522
1 changed files with 4 additions and 3 deletions

View File

@ -30,10 +30,11 @@ BEGIN
ish.visible, ish.visible,
p.sectorFk, p.sectorFk,
it.workerFk buyer, it.workerFk buyer,
CONCAT('http:',ic.url, '/catalog/1600x900/',i.image) urlImage, ic.url,
i.image,
ish.isChecked, ish.isChecked,
CASE CASE
WHEN s.notPrepared > sm.parked THEN 0 WHEN IFNULL (s.notPrepared, 0) > sm.parked THEN 0
WHEN sm.visible > sm.parked THEN 1 WHEN sm.visible > sm.parked THEN 1
ELSE 2 ELSE 2
END priority END priority
@ -43,7 +44,7 @@ BEGIN
JOIN tmp.stockMisfit sm ON sm.itemFk = ish.itemFk JOIN tmp.stockMisfit sm ON sm.itemFk = ish.itemFk
JOIN shelving sh ON sh.code = ish.shelvingFk JOIN shelving sh ON sh.code = ish.shelvingFk
JOIN parking p ON p.id = sh.parkingFk JOIN parking p ON p.id = sh.parkingFk
JOIN ( LEFT JOIN (
SELECT s.itemFk, sum(s.quantity) notPrepared SELECT s.itemFk, sum(s.quantity) notPrepared
FROM sale s FROM sale s
JOIN ticket t ON t.id = s.ticketFk JOIN ticket t ON t.id = s.ticketFk