diff --git a/src/api/auth/authDept.js b/src/api/auth/authDept.js index 568a4b50..b6f78d2c 100644 --- a/src/api/auth/authDept.js +++ b/src/api/auth/authDept.js @@ -49,6 +49,14 @@ export function getDeptListByUser(params) { }); } +export function getDeptListByUserOptimize(params) { + return axios({ + url: "/spms/inv/warehouse/filterByUserOptimize", + method: "get", + params: params + }); +} + diff --git a/src/views/purchase/purApply/purApply.vue b/src/views/purchase/purApply/purApply.vue index 99af8374..38068dec 100644 --- a/src/views/purchase/purApply/purApply.vue +++ b/src/views/purchase/purApply/purApply.vue @@ -546,7 +546,7 @@ export default { }; this.initActDateRange() if (deptCode != this.invCodebe) { - this.getInvList() + this.getInvList(this) } this.actDateRange = []; this.getList(); @@ -740,7 +740,7 @@ export default { _this.invCodebe = _this.filterQuery.targetDeptCode } _this.getList(); - _this.getInvList(); + _this.getInvList(_this); }); }, initActDateRange() { @@ -798,7 +798,6 @@ export default { this.initActDateRange() this.getCurInvList(this); this.getDeptList(this); - this.getInvList(this); } , } diff --git a/src/views/purchase/purApply/pureApplyAudit.vue b/src/views/purchase/purApply/pureApplyAudit.vue index f589a568..34f84774 100644 --- a/src/views/purchase/purApply/pureApplyAudit.vue +++ b/src/views/purchase/purApply/pureApplyAudit.vue @@ -539,7 +539,7 @@ export default { targetInvCode: null }; if (deptCode != this.invCodebe) { - this.getInvList() + this.getInvList(this) } this.actDateRange = []; this.getList(); @@ -673,7 +673,7 @@ export default { }, deptChange() { - this.getInvList(); + this.getInvList(this); this.getList(); }, getInvList(_this) { @@ -688,7 +688,7 @@ export default { getDeptList(_this) { filterDeptsOptimize().then((res) => { _this.options.getDeptList = res.data || []; - _this.getInvList(); + _this.getInvList(_this); _this.getList(); }); }, @@ -753,7 +753,6 @@ export default { this.actDateRange = [start, end]; this.getCurInvList(this); this.getDeptList(this); - this.getInvList(this); } , } diff --git a/src/views/purchase/purApply/pureApplyMySearch.vue b/src/views/purchase/purApply/pureApplyMySearch.vue index 34e7cc22..1ae48fdb 100644 --- a/src/views/purchase/purApply/pureApplyMySearch.vue +++ b/src/views/purchase/purApply/pureApplyMySearch.vue @@ -597,7 +597,7 @@ export default { targetDeptCode: this.invCodebe, }; if (targetDeptCode != this.invCodebe) { - this.getInvList() + this.getInvList(this) } this.actDateRange = []; this.actAuditDateRange = []; @@ -764,7 +764,7 @@ export default { _this.invCodebe = _this.filterQuery.targetDeptCode } _this.getList(); - _this.getInvList(); + _this.getInvList(_this); }); }, printOrder(_this,row) { @@ -830,7 +830,6 @@ export default { }); this.getCurInvList(this); this.getDeptList(this); - this.getInvList(this); } , } diff --git a/src/views/purchase/purApply/pureApplySearch.vue b/src/views/purchase/purApply/pureApplySearch.vue index d703cd17..bc615652 100644 --- a/src/views/purchase/purApply/pureApplySearch.vue +++ b/src/views/purchase/purApply/pureApplySearch.vue @@ -596,7 +596,7 @@ export default { deptCode: this.invCodebe, }; if (deptCode != this.invCodebe) { - this.getInvList() + this.getInvList(this) } this.actDateRange = []; this.actAuditDateRange = []; @@ -770,7 +770,7 @@ export default { _this.invCodebe = _this.filterQuery.deptCode } _this.getList(); - _this.getInvList(); + _this.getInvList(_this); }); }, getCurInvList(_this) { @@ -830,7 +830,6 @@ export default { }); this.getCurInvList(this); this.getDeptList(this); - this.getInvList(this); } , diff --git a/src/views/purchase/purPlan/purPlan.vue b/src/views/purchase/purPlan/purPlan.vue index 325979fc..c3a1ec78 100644 --- a/src/views/purchase/purPlan/purPlan.vue +++ b/src/views/purchase/purPlan/purPlan.vue @@ -1,72 +1,136 @@