7953-devToTest_2438 #2942
|
@ -71,7 +71,16 @@ module.exports = Self => {
|
||||||
arg: 'continent',
|
arg: 'continent',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The continent code'
|
description: 'The continent code'
|
||||||
|
}, {
|
||||||
|
arg: 'shipmentHour',
|
||||||
|
type: 'time',
|
||||||
|
description: 'The shipment hour'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
arg: 'landingHour',
|
||||||
|
type: 'time',
|
||||||
|
description: 'The landing hour'
|
||||||
|
}
|
||||||
],
|
],
|
||||||
returns: {
|
returns: {
|
||||||
type: ['Object'],
|
type: ['Object'],
|
||||||
|
@ -130,6 +139,8 @@ module.exports = Self => {
|
||||||
t.isReceived,
|
t.isReceived,
|
||||||
t.m3,
|
t.m3,
|
||||||
t.kg,
|
t.kg,
|
||||||
|
t.shipmentHour,
|
||||||
|
t.landingHour,
|
||||||
t.cargoSupplierFk,
|
t.cargoSupplierFk,
|
||||||
t.totalEntries,
|
t.totalEntries,
|
||||||
am.name agencyModeName,
|
am.name agencyModeName,
|
||||||
|
|
|
@ -44,7 +44,12 @@
|
||||||
},
|
},
|
||||||
"agencyModeFk": {
|
"agencyModeFk": {
|
||||||
"type": "number"
|
"type": "number"
|
||||||
}
|
},
|
||||||
|
"shipmentHour": {
|
||||||
|
"type": "time"
|
||||||
|
},
|
||||||
|
"landingHour": {
|
||||||
|
"type": "time"
|
||||||
},
|
},
|
||||||
"relations": {
|
"relations": {
|
||||||
"agency": {
|
"agency": {
|
||||||
|
|
Loading…
Reference in New Issue