|
|
|
@ -199,11 +199,12 @@ export default {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
invChange() {
|
|
|
|
|
this.productQuery.deptCode=this.invList.find(item => item.code == this.productQuery.invCode).parentId
|
|
|
|
|
this.multipleSelection = [];
|
|
|
|
|
this.spaceList = [];
|
|
|
|
|
this.formData.invSpaceCode = null;
|
|
|
|
|
this.formData.relId = null;
|
|
|
|
|
this.formData.ggxh = null;
|
|
|
|
|
this.productQuery.invSpaceCode = null;
|
|
|
|
|
this.productQuery.relId = null;
|
|
|
|
|
this.productQuery.ggxh = null;
|
|
|
|
|
this.getInvProductList();
|
|
|
|
|
this.getSpaceList();
|
|
|
|
|
},
|
|
|
|
@ -218,7 +219,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getSpaceList() {
|
|
|
|
|
let params = {invWarehouseCode: this.formData.invCode, status: 1};
|
|
|
|
|
let params = {invWarehouseCode: this.productQuery.invCode, status: 1};
|
|
|
|
|
getInvSpaceList(params).then((res) => {
|
|
|
|
|
this.spaceList = res.data.list || [];
|
|
|
|
|
})
|
|
|
|
@ -251,12 +252,11 @@ export default {
|
|
|
|
|
overStock: this.formData.overStock,
|
|
|
|
|
expireDate: this.formData.expireDate,
|
|
|
|
|
recentDate: this.formData.recentDate,
|
|
|
|
|
deptCode: this.formData.deptCode,
|
|
|
|
|
invCode: this.formData.invCode,
|
|
|
|
|
deptCode: this.productQuery.deptCode,
|
|
|
|
|
invCode: this.productQuery.invCode,
|
|
|
|
|
invSpaceCode: this.productQuery.invSpaceCode,
|
|
|
|
|
relIdList: relIdList
|
|
|
|
|
};
|
|
|
|
|
debugger
|
|
|
|
|
console.log(params)
|
|
|
|
|
batchAddInvRemindSet(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
@ -271,7 +271,7 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
verifyFormData() {
|
|
|
|
|
if (isBlank(this.formData.invCode)) {
|
|
|
|
|
if (isBlank(this.productQuery.invCode)) {
|
|
|
|
|
return "请选择预警仓库";
|
|
|
|
|
}
|
|
|
|
|
if (this.formData.lowStock === false && this.formData.lackStock === false && this.formData.overStock === false && this.formData.expireDate === false && this.formData.recentDate === false) {
|
|
|
|
@ -283,8 +283,8 @@ export default {
|
|
|
|
|
this.productVisible = true;
|
|
|
|
|
this.getInvProductList();
|
|
|
|
|
this.productQuery = {
|
|
|
|
|
invCode: this.formData.invCode,
|
|
|
|
|
invSpaceCode: this.formData.invSpaceCode,
|
|
|
|
|
invCode: this.productQuery.invCode,
|
|
|
|
|
invSpaceCode: this.productQuery.invSpaceCode,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
};
|
|
|
|
|