|
|
@ -135,6 +135,7 @@
|
|
|
|
:disabled="isShow"
|
|
|
|
:disabled="isShow"
|
|
|
|
style="width: 80%"
|
|
|
|
style="width: 80%"
|
|
|
|
placeholder="选择上级仓库"/>
|
|
|
|
placeholder="选择上级仓库"/>
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
@ -335,7 +336,12 @@ import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
|
|
|
|
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
|
|
|
|
import invSpaceManage from "@/views/inventory/InvSpaceManage";
|
|
|
|
import invSpaceManage from "@/views/inventory/InvSpaceManage";
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
addWarehouseUser, deleteWarehouseBussinessType, deleteWarehouseUser, filterList, filterThridSubByInv,
|
|
|
|
addWarehouseUser,
|
|
|
|
|
|
|
|
deleteWarehouseBussinessType,
|
|
|
|
|
|
|
|
deleteWarehouseUser,
|
|
|
|
|
|
|
|
filterInvWarehouse,
|
|
|
|
|
|
|
|
filterList,
|
|
|
|
|
|
|
|
filterThridSubByInv,
|
|
|
|
warehouseBussinessTypeList,
|
|
|
|
warehouseBussinessTypeList,
|
|
|
|
warehouseUserList
|
|
|
|
warehouseUserList
|
|
|
|
} from "@/api/system/invWarehouse";
|
|
|
|
} from "@/api/system/invWarehouse";
|
|
|
@ -453,7 +459,7 @@ export default {
|
|
|
|
this.getSubThrsysDetailData();
|
|
|
|
this.getSubThrsysDetailData();
|
|
|
|
filterSubAll(this.query)
|
|
|
|
filterSubAll(this.query)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
let invList = response.data.list || [];
|
|
|
|
let invList = response.data || [];
|
|
|
|
this.invOptions = this.handleTree(invList, "code", "parentCode");
|
|
|
|
this.invOptions = this.handleTree(invList, "code", "parentCode");
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
@ -508,6 +514,7 @@ export default {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
this.fromDeptOptions = [];
|
|
|
|
this.fromDeptOptions = [];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
normalizer(node) {
|
|
|
|
normalizer(node) {
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
@ -745,6 +752,7 @@ export default {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
this.getSyncConfig();
|
|
|
|
this.getSyncConfig();
|
|
|
|
this.findDeptMethod();
|
|
|
|
this.findDeptMethod();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|