预验收库查询bug修复

prod
郑明梁 2 years ago
parent 66635561bc
commit b2d6395a37

@ -195,6 +195,7 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
this.invPreProductDetailQuery.relId = this.inputQuery.relId; this.invPreProductDetailQuery.relId = this.inputQuery.relId;
this.invPreProductDetailQuery.invSpaceCode = this.inputQuery.invSpaceCode;
this.invPreProductDetailQuery.supId = this.inputQuery.supId; this.invPreProductDetailQuery.supId = this.inputQuery.supId;
this.invPreProductDetailQuery.batchNo = this.inputQuery.batchNo; this.invPreProductDetailQuery.batchNo = this.inputQuery.batchNo;
this.invPreProductDetailQuery.deptCode = this.inputQuery.deptCode; this.invPreProductDetailQuery.deptCode = this.inputQuery.deptCode;

@ -240,6 +240,7 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}, },
invSpaceCode:null,
list: [], list: [],
total: 0, total: 0,
invList: [], invList: [],
@ -273,6 +274,7 @@ export default {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
this.invSpaceCode=null
this.filterQuery = { this.filterQuery = {
nameCode: null, nameCode: null,
cpmctymc: null, cpmctymc: null,
@ -289,6 +291,7 @@ export default {
}, },
onSubmit() { onSubmit() {
this.filterQuery.page = 1; this.filterQuery.page = 1;
this.invSpaceCode=this.filterQuery.invSpaceCode,
this.getList(); this.getList();
}, },
hideSearch() { hideSearch() {
@ -369,6 +372,7 @@ export default {
}, },
detailDialog(row) { detailDialog(row) {
this.detailDialogVisible = true; this.detailDialogVisible = true;
debugger
this.inputQuery = { this.inputQuery = {
relId: row.relIdFk, relId: row.relIdFk,
cpmctymc: row.cpmctymc, cpmctymc: row.cpmctymc,
@ -379,7 +383,8 @@ export default {
expireDate: row.expireDate, expireDate: row.expireDate,
supId: row.supId, supId: row.supId,
deptCode: row.deptCode, deptCode: row.deptCode,
invCode: row.invCode invCode: row.invCode,
invSpaceCode: this.invSpaceCode
} }
}, },
closeDetailDialog() { closeDetailDialog() {

Loading…
Cancel
Save