- {{scope.row[value.key] | prepareStatusFilter}}
+ {{scope.row[value.key] | isShipmentFilter}}
{{scope.row[value.key]}}
@@ -115,6 +129,7 @@
const defautlTableThead = [
{ key: 'vin', title: '车架号', width: '180' },
{ key: 'storeHouseId', title: '仓库id', width: '120' },
+ { key: 'isShipment', title: '是否有入库指令', width: '120' },
{ key: 'shipmentGid', title: '入库指令', width: '120' },
{ key: 'storeHouseName', title: '仓库名称', width: '120' },
{ key: 'targetStoreHouse', title: '目标仓库', width: '120' },
@@ -155,6 +170,8 @@
condition: {
vin: null,
queryType: 'Y',
+ isShipment: '',
+ stockProperty: '',
startDate: Utils.parseTime(new Date().getTime(), '{y}-{m}-{d} 00:00:00'),
endDate: Utils.parseTime(new Date().getTime(), '{y}-{m}-{d} 23:59:59')
}
@@ -207,6 +224,11 @@
} else if (v.prepareStatus === '40') {
v.prepareStatus = '返工厂'
}
+ if (v.isShipment === 'Y') {
+ v.isShipment = '有'
+ } else if (v.isShipment === 'N') {
+ v.isShipment = '无'
+ }
return v
})
},
@@ -316,6 +338,8 @@
this.listQuery.condition = {
vin: null,
queryType: 'Y',
+ isShipment: '',
+ stockProperty: '',
startDate: Utils.parseTime(new Date().getTime(), '{y}-{m}-{d} 00:00:00'),
endDate: Utils.parseTime(new Date().getTime(), '{y}-{m}-{d} 23:59:59')
}