修改bug

prod
wangwei 2 years ago
parent 7941b5a4ae
commit fb0bacf0db

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

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

Loading…
Cancel
Save