fix: hotFix limit 5
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Javi Gallego 2024-09-18 23:41:01 +02:00
parent e9015f6c05
commit da0e735fb2
1 changed files with 4 additions and 3 deletions

View File

@ -63,7 +63,8 @@ module.exports = Self => {
FROM tItemShelving ti
JOIN tItemInSector tis ON tis.itemFk = ti.itemFk
JOIN vn.productionConfig pc
WHERE ti.created + INTERVAL pc.itemOlderReviewHours HOUR < tis.created ;`,
WHERE ti.created + INTERVAL pc.itemOlderReviewHours HOUR < tis.created
LIMIT 10;`,
[shelvingFk, shelvingFk], myOptions);
return result;
};