Browse Source

修改账外查询

dev
caoyizhong 2 years ago
parent
commit
63abfade35
  1. 22
      src/views/wastematerials/ProcessWasteMaterialsList.vue
  2. 33
      src/views/wastematerials/ProcessWasteMaterialsLists.vue

22
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -184,7 +184,6 @@
importExcelUrl: "wastematerials/processWasteMaterials/importExcel",
queryLibraryName: "/libraryassociation/processLibraryAssociation/list",
queryListmaterials: "/wastematerials/processWasteMaterials/materialGroup"
},
dictOptions:{},
@ -204,7 +203,13 @@
},
methods: {
handleDetail(record){
this.$router.push({name:'src-views-wastematerials-ProcessWasteMaterialsLists',params:{descriptionId: record.descriptionId}})
console.log(record);
this.$router.push({name:'src-views-wastematerials-ProcessWasteMaterialsLists',
params:{
merchandiseNewsId: record.merchandiseNewsId,
materialStorageId : record.materialStorageId
}
})
},
initDictConfig(){
//
@ -251,12 +256,13 @@
// console.log(res.result.records);
}
});
getAction(this.url.queryListmaterials).then((res)=>{
if(res.success){
this.Listmaterials = res.result;
// console.log(res.result);
}
});
// getAction(this.url.queryListmaterials).then((res)=>{
// if(res.success){
// this.Listmaterials = res.result;
// // console.log(res.result);
// }
// });
}
}
}

33
src/views/wastematerials/ProcessWasteMaterialsLists.vue

@ -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);
}
},

Loading…
Cancel
Save