fix: lang any #3348

Merged
carlossa merged 2 commits from hotfix-7355accountLang into master 2025-01-09 07:07:50 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit cafe6d812a - Show all commits

View File

@ -22,7 +22,7 @@ BEGIN
REPLACE bs.waste
SELECT YEAR(t.shipped),
WEEK(t.shipped, 4),
WEEK(t.shipped, 6),
it.workerFk,
it.id,
s.itemFk,
@ -70,6 +70,6 @@ BEGIN
JOIN vn.buy b ON b.id = lb.buy_id
WHERE t.shipped BETWEEN vDateFrom AND vDateTo
AND w.isManaged
GROUP BY YEAR(t.shipped), WEEK(t.shipped, 4), i.id;
GROUP BY YEAR(t.shipped), WEEK(t.shipped, 6), i.id;
END$$
DELIMITER ;