From a9d3e9497b4e280e1946d5b8aa304cc506e1f915 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Thu, 10 Oct 2024 16:24:39 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/orderDetailResult.js | 7 + .../inventory/supInoutSearchOrderDept.vue | 123 +++- .../inventory/supInoutSearchOrderSup.vue | 670 ++++++++++++++++++ 3 files changed, 787 insertions(+), 13 deletions(-) create mode 100644 src/views/inventory/supInoutSearchOrderSup.vue diff --git a/src/api/inout/orderDetailResult.js b/src/api/inout/orderDetailResult.js index 5fda63d9..8620a4c7 100644 --- a/src/api/inout/orderDetailResult.js +++ b/src/api/inout/orderDetailResult.js @@ -23,6 +23,13 @@ export function getResultOrderDeptList(params) { params: params }); } +export function getResultOrderDeptSupList(params) { + return axios({ + url: "/udiwms/inout/resultDetail/filterOrderDeptSupList", + method: "get", + params: params + }); +} export function verifyTemplateFile(data) { return axios({ diff --git a/src/views/inventory/supInoutSearchOrderDept.vue b/src/views/inventory/supInoutSearchOrderDept.vue index 902a748b..c0e9f909 100644 --- a/src/views/inventory/supInoutSearchOrderDept.vue +++ b/src/views/inventory/supInoutSearchOrderDept.vue @@ -3,9 +3,28 @@ + - + + + + {{ item.label }} + + + + + + + + + + + + {{ item.label }} + + + + + - - + @@ -30,7 +74,42 @@ - + + + + {{ item.label }} + + + + + + + + + + + + + + + + + + @@ -97,12 +177,13 @@ import { printOrderDept, excelInoutImport, postExcelInoutImport } from '@/api/inout/orderDetailResult' -import {getCorrespondence} from "@/api/basic/basicUnitMaintain"; +import {getCorrespondence,getBasicUnitMaintainsOptimize} from "@/api/basic/basicUnitMaintain"; import { getHead,executeFuc } from "@/utils/customConfig"; import {getDeptListByUser} from "@/api/auth/authDept"; import {filterSubAllOptimize} from "@/api/system/invSubWarehouse"; +import {getOrderDetailBusOptimize} from "@/api/basic/busType"; export default { name: "supInoutSearchOrder", @@ -115,6 +196,8 @@ export default { id: "", orderIdFk: null, invCode: null, + fromCorp: null, + hcType: null, fromCorpName: null, coName: null, spec: null, @@ -123,6 +206,7 @@ export default { limit: 30, startAduditTime: null, endAduditTime: null, + action: null, actionType: null, fromInvCode: null, keyWords: null, @@ -140,6 +224,7 @@ export default { }, fromOptions: [], + actions:[], loading: false, selectExportLoading: false, searchExportLoading: false, @@ -219,6 +304,9 @@ export default { this.filterQuery = { id: "", orderIdFk: null, + invCode: null, + fromCorp: null, + hcType: null, fromCorpName: null, coName: null, spec: null, @@ -227,7 +315,15 @@ export default { limit: 30, startAduditTime: null, endAduditTime: null, + action: null, actionType: null, + fromInvCode: null, + keyWords: null, + inoutPrintStatus: null, + confirmStarTime:null, //发票确认起始日期 + confirmEndTime:null, + corpName:null, + mainAction:"WareHouseOut", }; this.actDateRange = [] this.getList(); @@ -271,15 +367,15 @@ export default { }, //根据仓库,用户获取单据类型 - getBusTypeByInv(_this) { + getBusTypeByInv() { let query = { - code: _this.$store.getters.locInvCode, enabled: true, - detailType: _this.actionType + detailType: this.actionType, + mainAction: this.filterQuery.mainAction }; getOrderDetailBusOptimize(query) .then((response) => { - _this.options.getBusTypeByInv = response.data.list || []; + this.actions = response.data.list || []; }) .catch(() => { }); @@ -313,11 +409,8 @@ export default { this.fromOptions = []; let cQuery = { key: query, - corpType: 2, - page: 1, - limit: 10, }; - getCorrespondence(cQuery) + getBasicUnitMaintainsOptimize(cQuery) .then((response) => { this.loading = false; this.fromOptions = response.data.list || []; @@ -327,6 +420,9 @@ export default { this.fromOptions = []; }); }, + changeActionType(){ + this.getBusTypeByInv() + }, optinPrint() { this.$confirm("是否确定打印选中仓库出入库信息, 是否继续?", "提示", { confirmButtonText: "确定", @@ -560,6 +656,7 @@ export default { this.actionType = 'norDetail'; this.getList(); this.getInvList(); + this.getBusTypeByInv(); } , } diff --git a/src/views/inventory/supInoutSearchOrderSup.vue b/src/views/inventory/supInoutSearchOrderSup.vue new file mode 100644 index 00000000..d0046fef --- /dev/null +++ b/src/views/inventory/supInoutSearchOrderSup.vue @@ -0,0 +1,670 @@ + + + + + +