|
|
|
@ -151,7 +151,7 @@
|
|
|
|
|
}, |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
descriptionId: this.$route.params.descriptionId, |
|
|
|
|
descriptionId: this.$route.params.materialStorageId, |
|
|
|
|
queryParam:{ |
|
|
|
|
supplier: null, |
|
|
|
|
supplierDescription: null, |
|
|
|
@ -163,7 +163,9 @@
|
|
|
|
|
expirationDate: null, |
|
|
|
|
storageTime: null, |
|
|
|
|
materialsState: null, |
|
|
|
|
descriptionId: this.$route.params.descriptionId, |
|
|
|
|
merchandiseNewsId: this.$route.params.merchandiseNewsId, |
|
|
|
|
materialStorageId: this.$route.params.materialStorageId, |
|
|
|
|
descriptionId: null, |
|
|
|
|
del_flag: 0 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -187,27 +189,27 @@
|
|
|
|
|
{ |
|
|
|
|
title:'供应商', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'supplier' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'供应商描述', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'supplierDescription' |
|
|
|
|
dataIndex: 'supplierName' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'供应商描述', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'supplierDescription' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title:'物料组', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'materialGroup' |
|
|
|
|
dataIndex: 'descriptionName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'物料', |
|
|
|
|
title:'物料号', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'materialNumber' |
|
|
|
|
dataIndex: 'materialsNumber' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'物料描述', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'materialDescription' |
|
|
|
|
dataIndex: 'merchandiseName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'库存位置', |
|
|
|
@ -237,7 +239,7 @@
|
|
|
|
|
{ |
|
|
|
|
title:'金额(元)', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'materialAmount' |
|
|
|
|
dataIndex: 'rates' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'生产日期', |
|
|
|
@ -295,7 +297,8 @@
|
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
$route() { |
|
|
|
|
this.queryParam.descriptionId = this.$route.params.descriptionId |
|
|
|
|
this.queryParam.merchandiseNewsId = this.$route.params.merchandiseNewsId; |
|
|
|
|
this.queryParam.materialStorageId = this.$route.params.materialStorageId; |
|
|
|
|
this.loadData() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -316,7 +319,7 @@
|
|
|
|
|
this.queryParam.inboundDateEnd=dateString[1]; |
|
|
|
|
}, |
|
|
|
|
judgeRouterParam(){ |
|
|
|
|
if (this.$route.params.descriptionId == null){ |
|
|
|
|
if (this.$route.params.merchandiseNewsId == null){ |
|
|
|
|
this.$router.go(-1); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|