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", importExcelUrl: "wastematerials/processWasteMaterials/importExcel",
queryLibraryName: "/libraryassociation/processLibraryAssociation/list", queryLibraryName: "/libraryassociation/processLibraryAssociation/list",
queryListmaterials: "/wastematerials/processWasteMaterials/materialGroup"
}, },
dictOptions:{}, dictOptions:{},
@ -204,7 +203,13 @@
}, },
methods: { methods: {
handleDetail(record){ 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(){ initDictConfig(){
// //
@ -251,12 +256,13 @@
// console.log(res.result.records); // console.log(res.result.records);
} }
}); });
getAction(this.url.queryListmaterials).then((res)=>{
if(res.success){ // getAction(this.url.queryListmaterials).then((res)=>{
this.Listmaterials = res.result; // if(res.success){
// console.log(res.result); // this.Listmaterials = res.result;
} // // console.log(res.result);
}); // }
// });
} }
} }
} }

33
src/views/wastematerials/ProcessWasteMaterialsLists.vue

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

Loading…
Cancel
Save