8355-testToMaster #3336

Merged
alexm merged 241 commits from 8355-testToMaster into master 2025-01-07 06:44:57 +00:00
1 changed files with 12 additions and 0 deletions
Showing only changes of commit cfee497adb - Show all commits

View File

@ -83,6 +83,14 @@ module.exports = Self => {
arg: 'daysOnward', arg: 'daysOnward',
type: 'number', type: 'number',
description: 'The days onward' description: 'The days onward'
}, {
arg: 'shipped',
type: 'date',
description: 'The shipped date'
}, {
arg: 'landed',
type: 'date',
description: 'The landed date'
} }
], ],
returns: { returns: {
@ -108,6 +116,10 @@ module.exports = Self => {
: {'t.ref': {like: `%${value}%`}}; : {'t.ref': {like: `%${value}%`}};
case 'ref': case 'ref':
return {'t.ref': {like: `%${value}%`}}; return {'t.ref': {like: `%${value}%`}};
case 'shipped':
return {'t.shipped': value};
case 'landed':
return {'t.landed': value};
case 'shippedFrom': case 'shippedFrom':
return {'t.shipped': {gte: value}}; return {'t.shipped': {gte: value}};
case 'shippedTo': case 'shippedTo':