fix: refs #6897 travel filter
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
e8010d0f18
commit
26d93ef474
|
@ -71,7 +71,16 @@ module.exports = Self => {
|
|||
arg: 'continent',
|
||||
type: 'string',
|
||||
description: 'The continent code'
|
||||
}, {
|
||||
arg: 'shipmentHour',
|
||||
type: 'time',
|
||||
description: 'The shipment hour'
|
||||
},
|
||||
{
|
||||
arg: 'landingHour',
|
||||
type: 'time',
|
||||
description: 'The landing hour'
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
|
@ -130,6 +139,8 @@ module.exports = Self => {
|
|||
t.isReceived,
|
||||
t.m3,
|
||||
t.kg,
|
||||
t.shipmentHour,
|
||||
t.landingHour,
|
||||
t.cargoSupplierFk,
|
||||
t.totalEntries,
|
||||
am.name agencyModeName,
|
||||
|
|
|
@ -44,8 +44,13 @@
|
|||
},
|
||||
"agencyModeFk": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
},
|
||||
"shipmentHour": {
|
||||
"type": "time"
|
||||
},
|
||||
"landingHour": {
|
||||
"type": "time"
|
||||
},
|
||||
"relations": {
|
||||
"agency": {
|
||||
"type": "belongsTo",
|
||||
|
|
Loading…
Reference in New Issue