修改bug

prod
wangwei 2 years ago
parent 7941b5a4ae
commit fb0bacf0db

@ -47,7 +47,7 @@ import {getCountCodesList, deleteCode} from "@/api/inventory/invCountCodes";
export default { export default {
name: "InvCountCodes", name: "InvCountCodes",
props: { props: {
countQuery: { codeQuery: {
type: Object, type: Object,
required: true, required: true,
}, },
@ -89,7 +89,7 @@ export default {
this.getCodeList(); this.getCodeList();
}, },
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.relId = this.codeQuery.relId; this.query.relId = this.codeQuery.relId;
this.query.orderIdFk = this.codeQuery.orderIdFk; this.query.orderIdFk = this.codeQuery.orderIdFk;
this.query.batchNo = this.codeQuery.batchNo; this.query.batchNo = this.codeQuery.batchNo;

@ -541,19 +541,20 @@ export default {
this.$message.warning("请先选择盘点仓库和货位"); this.$message.warning("请先选择盘点仓库和货位");
return; return;
} }
let params = { this.selectInvProductVisible = true;
invCode: this.formData.invCode, // let params = {
invSpaceCode: this.formData.invSpaceCode // invCode: this.formData.invCode,
}; // invSpaceCode: this.formData.invSpaceCode
getCountInvProductProduct(params).then((res) => { // };
if (res.data.total !== 0) { // getCountInvProductProduct(params).then((res) => {
let invProductList = res.data.list; // if (res.data.total !== 0) {
for (let product of invProductList) { // let invProductList = res.data.list;
this.countProductList.push(product); // for (let product of invProductList) {
} // this.countProductList.push(product);
this.saveOrder(1); // }
} // this.saveOrder(1);
}); // }
// });
} else if (this.countType === 2) { } else if (this.countType === 2) {
if (isBlank(this.formData.invCode) || isBlank(this.formData.invSpaceCode)) { if (isBlank(this.formData.invCode) || isBlank(this.formData.invSpaceCode)) {
this.$message.warning("请先选盘点仓库"); this.$message.warning("请先选盘点仓库");

Loading…
Cancel
Save