Merge pull request 'feat: refs #7818 entry_splitByShelving' (!2840) from 7818-entry_splitByShelvingFix into master
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #2840
Reviewed-by: Sergio De la torre <sergiodt@verdnatura.es>
This commit is contained in:
Robert Ferrús 2024-08-07 10:03:03 +00:00
commit 2429d213da
1 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,7 @@ BEGIN
DECLARE cur CURSOR FOR
SELECT bb.id buyFk,
FLOOR(ish.visible / ish.packing) ishStickers,
LEAST(bb.stickers, FLOOR(ish.visible / ish.packing)) ishStickers,
bb.stickers buyStickers
FROM itemShelving ish
JOIN (SELECT b.id, b.itemFk, b.stickers
@ -23,7 +23,6 @@ BEGIN
WHERE b.entryFk = vFromEntryFk
ORDER BY b.stickers DESC
LIMIT 10000000000000000000) bb ON bb.itemFk = ish.itemFk
AND bb.stickers >= FLOOR(ish.visible / ish.packing)
WHERE ish.shelvingFk = vShelvingFk COLLATE utf8_general_ci
AND NOT ish.isSplit
GROUP BY ish.id;