|
|
|
@ -26,7 +26,7 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="采购仓库">
|
|
|
|
|
<el-select v-model="filterQuery.targetInvCode" style="width: 90%" placeholder="请选择所属仓库">
|
|
|
|
|
<el-select v-model="filterQuery.invCode" style="width: 90%" placeholder="请选择所属仓库">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
@ -172,7 +172,8 @@ export default {
|
|
|
|
|
type: 1,
|
|
|
|
|
editStatus: 1,
|
|
|
|
|
emergency:'',
|
|
|
|
|
deptCode:'',
|
|
|
|
|
deptCode:'',
|
|
|
|
|
invCode:null
|
|
|
|
|
},
|
|
|
|
|
formName: null,
|
|
|
|
|
formMap: {
|
|
|
|
@ -256,8 +257,10 @@ export default {
|
|
|
|
|
corpName: null,
|
|
|
|
|
type: 1,
|
|
|
|
|
editStatus: 1,
|
|
|
|
|
deptCode: this.invCodebe,
|
|
|
|
|
deptCode: this.invCodebe,
|
|
|
|
|
invCode:null
|
|
|
|
|
};
|
|
|
|
|
this.getInvList()
|
|
|
|
|
this.actDateRange = [];
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
@ -359,6 +362,7 @@ export default {
|
|
|
|
|
var query={
|
|
|
|
|
parentId:this.filterQuery.deptCode
|
|
|
|
|
}
|
|
|
|
|
this.filterQuery.invCode = null
|
|
|
|
|
filterSubAll(query).then((res) => {
|
|
|
|
|
this.invList = res.data || [];
|
|
|
|
|
})
|
|
|
|
|