fix: refs #6389 saleMonitor filter #3130

Open
carlossa wants to merge 12 commits from 6389-changesMonitor into dev
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 55483f8e6b - Show all commits

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};
}
});