fix: refs #6389 packing
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-10-28 09:01:10 +01:00
parent 3318faffc6
commit 55483f8e6b
1 changed files with 8 additions and 0 deletions

View File

@ -88,6 +88,11 @@ module.exports = Self => {
arg: 'alertLevel',
type: 'number',
description: `The alert level of the tickets`
},
{
arg: 'packing',
type: 'string',
description: `The packing of the items`
}
],
returns: {
@ -155,6 +160,9 @@ module.exports = Self => {
case 'clientFk':
param = `t.${param}`;
return {[param]: value};
case 'packing':
param = `i.${param}`;
return {[param]: value};
}
});