|
|
|
@ -150,9 +150,10 @@
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="单据日期" prop="billDate" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="billType" width="150"></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="发货单位" prop="fromCorp" width="220"></el-table-column>
|
|
|
|
|
<el-table-column label="收货单位" prop="toCorp" width="220"></el-table-column>
|
|
|
|
|
<el-table-column label="所属企业" prop="companyName" width="220"></el-table-column>
|
|
|
|
|
<el-table-column label="所属企业" prop="companyIdFk" width="220" :formatter="formatCompanyName"></el-table-column>
|
|
|
|
|
<el-table-column label="上传人" prop="uploadUser" width="220"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark" width="220"></el-table-column>
|
|
|
|
|
|
|
|
|
@ -343,7 +344,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {filterCpmctymc, filterGgxh, filterNameCode, sourceSearch} from "@/api/udi/udiTrace";
|
|
|
|
|
import {filterCpmctymc, filterGgxh, filterNameCode, sourceSearch,filterCompanyName} from "@/api/udi/udiTrace";
|
|
|
|
|
import {filterCompany} from "@/api/basic/udiInfo";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -369,11 +370,31 @@ export default {
|
|
|
|
|
fromOptions: [],
|
|
|
|
|
cpmctymcList: [],
|
|
|
|
|
ggxhList: [],
|
|
|
|
|
nameCodeList: []
|
|
|
|
|
nameCodeList: [],
|
|
|
|
|
companyNameList: []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
formatCompanyName(row){
|
|
|
|
|
let temp = this.companyNameList.find(item=>{
|
|
|
|
|
return item.id == row.companyIdFk
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return temp && temp.companyName
|
|
|
|
|
},
|
|
|
|
|
getCompanyName(){
|
|
|
|
|
let cQuery = {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
filterCompanyName(cQuery).then((res) => {
|
|
|
|
|
this.companyNameList = res.data.list || [];
|
|
|
|
|
console.log(this.companyNameList)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
ggxhChange() {
|
|
|
|
|
this.filterQuery.nameCode = null
|
|
|
|
|
this.filterQuery.batchNo = null
|
|
|
|
|
this.getNameCodeList()
|
|
|
|
|
},
|
|
|
|
|
getNameCodeList(query) {
|
|
|
|
@ -391,6 +412,9 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
cpmctymcChange() {
|
|
|
|
|
this.filterQuery.ggxh = null
|
|
|
|
|
this.filterQuery.nameCode = null
|
|
|
|
|
this.filterQuery.batchNo = null
|
|
|
|
|
this.getGgxhList()
|
|
|
|
|
},
|
|
|
|
|
getGgxhList(query) {
|
|
|
|
@ -407,6 +431,10 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
ylqxzcrbarmcChange() {
|
|
|
|
|
this.filterQuery.cpmctymc = null
|
|
|
|
|
this.filterQuery.ggxh = null
|
|
|
|
|
this.filterQuery.nameCode = null
|
|
|
|
|
this.filterQuery.batchNo = null
|
|
|
|
|
this.getCpmctymcList()
|
|
|
|
|
},
|
|
|
|
|
getCpmctymcList(query) {
|
|
|
|
@ -464,7 +492,7 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
//this.list = null
|
|
|
|
|
this.list = null
|
|
|
|
|
//this.total = 0
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
@ -493,6 +521,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getCompanyName()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|