refs #6964 feat:advice for olderItem
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Sergio De la torre 2024-03-22 10:08:20 +01:00
parent d8da317339
commit 027aa86662
1 changed files with 28 additions and 15 deletions

View File

@ -1,9 +1,10 @@
module.exports = Self => {
Self.remoteMethod('hasItemOlder', {
description: 'Get boolean if any item of the shelving has older created in another shelving ',
description:
'Get boolean if any or specific item of the shelving has older created in another shelving or parking',
accessType: 'WRITE',
accepts: [{
arg: 'shelvingFk',
arg: 'shelvingFkIn',
type: 'string',
required: true,
description: 'Shelving code'
@ -11,8 +12,17 @@ module.exports = Self => {
{
arg: 'parking',
type: 'string',
required: true,
description: 'Parking code'
},
{
arg: 'shelvingFkOut',
type: 'string',
description: 'Shelving code'
},
{
arg: 'itemFk',
type: 'int',
description: 'Item id'
}],
returns: {
type: 'boolean',
@ -24,21 +34,24 @@ module.exports = Self => {
}
});
Self.hasItemOlder = async(shelvingFk, parking, options) => {
Self.hasItemOlder = async(shelvingFkIn, parking, shelvingFkOut, itemFk, options) => {
const result = await Self.rawSql(`
SELECT COUNT(ish.id)
FROM vn.itemShelving ish
JOIN (
SELECT ish.itemFk, created,shelvingFk, p.code
FROM vn.itemShelving ish
JOIN vn.shelving s ON ish.shelvingFk = s.code
JOIN vn.parking p ON p.id = s.parkingFk
FROM vn.itemShelving ish
JOIN (
SELECT ish.itemFk, created,shelvingFk, p.code
FROM vn.itemShelving ish
JOIN vn.shelving s ON ish.shelvingFk = s.code
LEFT JOIN vn.parking p ON p.id = s.parkingFk
WHERE ish.shelvingFk = ?
)sub ON sub.itemFK = ish.itemFk
JOIN vn.shelving s ON s.code = ish.shelvingFk
JOIN vn.parking p ON p.id = s.parkingFk
WHERE ish.shelvingFk <> ? AND sub.created > ish.created AND p.code <> ?`,
[shelvingFk, shelvingFk, parking]);
)sub ON sub.itemFK = ish.itemFk
JOIN vn.shelving s ON s.code = ish.shelvingFk
JOIN vn.parking p ON p.id = s.parkingFk
WHERE sub.created > ish.created
AND (p.code <> ? OR ? IS NULL)
AND (ish.shelvingFk <> ? OR ? IS NULL)
AND (ish.itemFk <> ? OR ? IS NULL)`,
[shelvingFkIn, parking, parking, shelvingFkOut, shelvingFkOut, itemFk, itemFk]);
return result[0]['COUNT(ish.id)'] > 0;
};
};