Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into dev
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Javi Gallego 2025-02-24 13:09:57 +01:00
commit dbe58c6630
1 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,11 @@ module.exports = Self => {
type: 'date', type: 'date',
description: `The to date filter` description: `The to date filter`
}, },
{
arg: 'shipped',
type: 'date',
description: `The shipped date filter`
},
{ {
arg: 'nickname', arg: 'nickname',
type: 'string', type: 'string',
@ -201,6 +206,7 @@ module.exports = Self => {
case 'clientFk': case 'clientFk':
case 'agencyModeFk': case 'agencyModeFk':
case 'warehouseFk': case 'warehouseFk':
case 'shipped':
param = `t.${param}`; param = `t.${param}`;
return {[param]: value}; return {[param]: value};
} }