From 1ccb334d8640ac7491f75b83146a243aff5f3e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Tue, 27 Jun 2023 10:52:57 +0800 Subject: [PATCH 01/38] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env.development b/.env.development index eed92e7d..d6a9fa2a 100644 --- a/.env.development +++ b/.env.development @@ -5,7 +5,7 @@ VUE_APP_TITLE = UDI管理系统 ENV = 'development' # 开发环境 -VUE_APP_BASE_API = 'http://127.0.0.1:9991' +VUE_APP_BASE_API = 'http://192.168.0.43:9991' VUE_APP_SYNC_API ="http://127.0.0.1:10001" diff --git a/.env.production b/.env.production index 21ea9a52..9de78aa4 100644 --- a/.env.production +++ b/.env.production @@ -16,9 +16,9 @@ ENV = 'production' # VUE_APP_BASE_API = 'http://192.168.0.66:9150/UDI_WMS_MC/' # 文明东1 -# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/' +VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/' # 文明东2 -# VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://192.168.0.153:9150/UDI_WMS_MC/' # VUE_APP_SYNC_API ="http://192.168.0.62:9150/SP_SYNC_SERVER" 刘恩典 @@ -31,7 +31,7 @@ ENV = 'production' # VUE_APP_BASE_API = 'http://116.204.106.103:9150/UDI_WMS_MC/' # 漳州中医院 -VUE_APP_BASE_API = 'http://192.168.240.119:9150/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://192.168.240.119:9150/UDI_WMS_MC/' # 应用访问路径 例如使用前缀 /admin/ From 97de905cc96e123a48ed3304cf7ce5360d71f0c2 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Tue, 27 Jun 2023 18:35:32 +0800 Subject: [PATCH 02/38] =?UTF-8?q?=E6=8A=A5=E5=91=8A=E9=A2=84=E8=A7=88bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCheck.vue | 6 ++++++ src/views/inout/IoAuditedOrder.vue | 6 ++++++ src/views/inout/IoCheckAuditOrder.vue | 6 ++++++ src/views/inout/IoCheckSuccessOrder.vue | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/src/views/inout/DialogCheck.vue b/src/views/inout/DialogCheck.vue index 4912f568..fb8bf616 100644 --- a/src/views/inout/DialogCheck.vue +++ b/src/views/inout/DialogCheck.vue @@ -455,6 +455,9 @@ export default { return isJPG || isPNG; }, showImgViewer(row) { + if(this.inputQuery.filePath.substr(-1) == ','){ + this.inputQuery.filePath=this.inputQuery.filePath.slice(0, this.inputQuery.filePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+this.inputQuery.filePath; @@ -493,6 +496,9 @@ export default { }, showImgViewerCold(row){ + if(this.inputQuery.coldFilePath.substr(-1) == ','){ + this.inputQuery.coldFilePath=this.inputQuery.coldFilePath.slice(0, this.inputQuery.coldFilePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+this.inputQuery.coldFilePath; diff --git a/src/views/inout/IoAuditedOrder.vue b/src/views/inout/IoAuditedOrder.vue index b741b13b..621f5f75 100644 --- a/src/views/inout/IoAuditedOrder.vue +++ b/src/views/inout/IoAuditedOrder.vue @@ -654,6 +654,9 @@ export default { this.getList(); }, showImgViewer(row) { + if(row.filePath.substr(-1) == ','){ + row.filePath=row.filePath.slice(0, row.filePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.filePath; @@ -693,6 +696,9 @@ export default { showImgViewerCold(row) { + if(row.coldFilePath.substr(-1) == ','){ + row.coldFilePath=row.coldFilePath.slice(0, row.coldFilePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.coldFilePath; diff --git a/src/views/inout/IoCheckAuditOrder.vue b/src/views/inout/IoCheckAuditOrder.vue index c8bf5c47..6e2bd66c 100644 --- a/src/views/inout/IoCheckAuditOrder.vue +++ b/src/views/inout/IoCheckAuditOrder.vue @@ -753,6 +753,9 @@ export default { this.showSearch = !this.showSearch; }, showImgViewer(row) { + if(row.filePath.substr(-1) == ','){ + row.filePath=row.filePath.slice(0, row.filePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.filePath; @@ -791,6 +794,9 @@ export default { }, showImgViewerCold(row) { + if(row.coldFilePath.substr(-1) == ','){ + row.coldFilePath=row.coldFilePath.slice(0, row.coldFilePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.coldFilePath; diff --git a/src/views/inout/IoCheckSuccessOrder.vue b/src/views/inout/IoCheckSuccessOrder.vue index b2eec70b..9d317f6e 100644 --- a/src/views/inout/IoCheckSuccessOrder.vue +++ b/src/views/inout/IoCheckSuccessOrder.vue @@ -620,6 +620,9 @@ export default { }, showImgViewer(row) { + if(row.filePath.substr(-1) == ','){ + row.filePath=row.filePath.slice(0, row.filePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.filePath; @@ -658,6 +661,9 @@ export default { }, showImgViewerCold(row) { + if(row.coldFilePath.substr(-1) == ','){ + row.coldFilePath=row.coldFilePath.slice(0, row.coldFilePath.length-1); + } this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="+row.coldFilePath; From 32245ac978fd565bfc9b643106202156ccc7e5b5 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 28 Jun 2023 10:42:28 +0800 Subject: [PATCH 03/38] =?UTF-8?q?=E5=88=86=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.production b/.env.production index 21ea9a52..8cc9d4c3 100644 --- a/.env.production +++ b/.env.production @@ -18,8 +18,8 @@ ENV = 'production' # 文明东1 # VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/' # 文明东2 -# VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/' -# VUE_APP_SYNC_API ="http://192.168.0.62:9150/SP_SYNC_SERVER" + #VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/' + #VUE_APP_SYNC_API ="http://192.168.0.62:9150/SP_SYNC_SERVER" 刘恩典 # VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_WMS_MC/' From 15d9403e3f379c85d97a2eee7c13e23f5c865d8a Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Thu, 6 Jul 2023 11:17:27 +0800 Subject: [PATCH 04/38] =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=8D=95=E6=8D=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=9A=E5=BE=80=E6=9D=A5=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 2 +- src/views/inout/PanelCreateOrderBizDetail.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index e4c53f00..1df9bf72 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -128,7 +128,7 @@ " > Date: Thu, 6 Jul 2023 14:14:24 +0800 Subject: [PATCH 05/38] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E8=A1=A5=E5=8D=95?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E9=97=B4=E9=9A=94=E4=B8=8D=E5=BA=94=E4=B8=BA?= =?UTF-8?q?=E8=B4=9F=E6=95=B0=20230522?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept/invRelUsers.vue | 1 - src/views/system/param/busTypeChange.vue | 9 ++++++++- src/views/system/param/busTypePre.vue | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/views/system/dept/invRelUsers.vue b/src/views/system/dept/invRelUsers.vue index 5a77c4a9..120f19c4 100644 --- a/src/views/system/dept/invRelUsers.vue +++ b/src/views/system/dept/invRelUsers.vue @@ -216,7 +216,6 @@ export default { warehouseUserList(this.userQuery).then((res) => { this.userData = res.data.list; this.userTotal = res.data.total; - }).catch((error) => { this.$message.error("数据正在处理,请勿重复提交") }); diff --git a/src/views/system/param/busTypeChange.vue b/src/views/system/param/busTypeChange.vue index 7034e6b0..b26b13ea 100644 --- a/src/views/system/param/busTypeChange.vue +++ b/src/views/system/param/busTypeChange.vue @@ -239,7 +239,14 @@ export default { this.$message.error("请选择类型!"); return; } - + if (this.inputQuery.beforeTime < 0){ + this.$message.error("生成出入库单时间间隔不能为负数!") + return; + } + if (this.inputQuery.busBeforeTime < 0){ + this.$message.error("生成业务单时间间隔不能为负数!") + return; + } if (this.formName === "add") { let numRegExp = '^[0-9]*$'; let numReg = new RegExp(numRegExp); diff --git a/src/views/system/param/busTypePre.vue b/src/views/system/param/busTypePre.vue index 30388134..a6ffdf7e 100644 --- a/src/views/system/param/busTypePre.vue +++ b/src/views/system/param/busTypePre.vue @@ -235,11 +235,11 @@ export default { return; } if (this.inputQuery.beforeTime < 0){ - this.$message.error("时间间隔不能为负数!") + this.$message.error("生成出入库单时间间隔不能为负数!") return; } if (this.inputQuery.busBeforeTime < 0){ - this.$message.error("时间间隔不能为负数!") + this.$message.error("生成业务单时间间隔不能为负数!") return; } // if (isBlank(this.inputQuery.invCode)) { From 4d0902c7c2e5cb45fbcb6ade7b298b5fe4484c18 Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Thu, 6 Jul 2023 15:02:52 +0800 Subject: [PATCH 06/38] =?UTF-8?q?=E9=80=89=E5=85=A5=E9=A2=84=E9=AA=8C?= =?UTF-8?q?=E6=94=B6=E5=BA=93=E5=8D=95=E7=AA=97=E5=8F=A3=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E9=87=8D=E7=BD=AE=E6=8C=89=E9=92=AE=EF=BC=8C=E2=80=99=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E6=97=B6=E9=97=B4=E2=80=98=E4=BF=A1=E6=81=AF=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E8=81=94=E5=8A=A8=E6=B8=85=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrderSelect.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/inout/DialogCreateOrderSelect.vue b/src/views/inout/DialogCreateOrderSelect.vue index 5536a78d..08f95120 100644 --- a/src/views/inout/DialogCreateOrderSelect.vue +++ b/src/views/inout/DialogCreateOrderSelect.vue @@ -449,6 +449,7 @@ export default { startTime: null, endTime: null, }; + this.actDateRange = null this.getList(); }, //查询 From 4904f8109e65549d7ec134eb51340e3844e2e1f0 Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Thu, 6 Jul 2023 15:29:24 +0800 Subject: [PATCH 07/38] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E5=87=BA=E5=BA=93=E5=AE=A1=E6=A0=B8=E6=8B=92=E7=BB=9D=E5=90=8E?= =?UTF-8?q?=EF=BC=8C=E4=B8=8D=E4=BC=9A=E6=98=BE=E7=A4=BA=E2=80=98=E6=8B=92?= =?UTF-8?q?=E7=BB=9D=E2=80=99=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/muti/ioOrderMutiSelect.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/inout/muti/ioOrderMutiSelect.vue b/src/views/inout/muti/ioOrderMutiSelect.vue index 41a24468..857efd00 100644 --- a/src/views/inout/muti/ioOrderMutiSelect.vue +++ b/src/views/inout/muti/ioOrderMutiSelect.vue @@ -169,6 +169,7 @@ export default { 0: "草稿", 1: "未审核", 2: "已审核", + 3: "已拒绝" }, orderMutiVisible: false, actDateRange: [], @@ -210,7 +211,9 @@ export default { statusFilterType(status) { const statusMap = { 0: "warning", - 1: "success", + 1: "primary", + 2: "success", + 3: "danger" }; return statusMap[status]; }, From fc6e17a699b462aaf9252e6bc2c8b0cca0a1b263 Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Thu, 6 Jul 2023 15:43:53 +0800 Subject: [PATCH 08/38] =?UTF-8?q?=20=E6=96=B0=E5=A2=9E=E6=89=AB=E7=A0=81?= =?UTF-8?q?=E5=8D=95=E6=A8=A1=E5=9D=97=E5=88=B0=E5=BE=85=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E5=8D=95=E6=8D=AE=E6=A8=A1=E5=9D=97=EF=BC=8C=E5=A4=87=E6=B3=A8?= =?UTF-8?q?=E4=BC=9A=E6=B6=88=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 6 ++++-- src/views/inout/PanelCreateOrderBizDetail.vue | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index 1df9bf72..74a50762 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -119,7 +119,7 @@ Date: Thu, 6 Jul 2023 16:44:45 +0800 Subject: [PATCH 09/38] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=A4=87=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index 74a50762..3dbb2bb9 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -119,7 +119,7 @@ Date: Thu, 6 Jul 2023 17:01:59 +0800 Subject: [PATCH 10/38] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=8F=91?= =?UTF-8?q?=E7=A5=A8=E4=BF=A1=E6=81=AF=E4=B8=AD=E7=9A=84=E9=A2=84=E8=A7=88?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E6=97=A0=E6=B3=95=E6=89=8B=E5=8A=A8=E5=85=B3?= =?UTF-8?q?=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceRegistration.vue | 38 +++++++++++-------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index d7066054..6dfd59ba 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -798,41 +798,37 @@ export default { showImgViewer(row) { this.certFileUrl = this.BASE_URL + - "/udiwms/image/register/file/getImage?type=image2&name="+row.licenseUrl; + "/udiwms/image/register/file/getImage?type=image2&name=" + row.licenseUrl; this.imgList = []; - this.imgList.push(this.certFileUrl) + this.imgList.push(this.certFileUrl); let index = row.licenseUrl.lastIndexOf('.'); - if(index===-1){ - this.$message.error("文件名异常!") - return false + if (index === -1) { + this.$message.error("文件名异常!"); + return false; } - if(row.licenseUrl.substr(index+1)==='pdf'){ - let pdf = "application/pdf" + if (row.licenseUrl.substr(index + 1) === 'pdf') { + let pdf = "application/pdf"; let binaryData = []; - previewFile(this.certFileUrl).then(res=>{ + previewFile(this.certFileUrl).then(res => { binaryData.push(res); - let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf})); + let URL = window.URL.createObjectURL(new Blob(binaryData, { type: pdf })); window.open(URL); - }) - // window.open(this.imgList[0]) - return false + }); + return false; } this.imgViewerVisible = true; - // previewImage({ - // imageUrl: this.inputQuery.licenseUrl, - // certFileUrl: this.certFileUrl, - // }).then((response) => { - // if (response.code === 20000) { - // } - // console.log(this.imgList); - // }); const m = (e) => { e.preventDefault(); }; document.body.style.overflow = "hidden"; document.addEventListener("touchmove", m, false); // 禁止页面滑动 - }, + closeImgViewer() { + this.imgViewerVisible = false; + document.body.style.overflow = "auto"; // 恢复页面滑动 + document.removeEventListener("touchmove", m, false); // 移除禁止页面滑动的事件 + }, + invChange() { From c11f8e4b3aedba792771998301172cd0c123f9cc Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Thu, 6 Jul 2023 18:05:36 +0800 Subject: [PATCH 11/38] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=AA=97=E5=8F=A3=E6=89=A7=E8=A1=8C=E2=80=98?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E5=85=A8=E9=83=A8=E5=AF=BC=E5=87=BA=E2=80=99?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=EF=BC=8C=E5=AF=BC=E5=87=BA=E7=9A=84=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E6=95=B0=E6=8D=AE=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/thrsys/thrProductsExport.js | 8 ++++++ .../thirdSys/product/thrProductsExport.vue | 4 +-- .../thirdSys/product/thrProductsSelect.vue | 28 +++++++++++++++++-- 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/src/api/thrsys/thrProductsExport.js b/src/api/thrsys/thrProductsExport.js index dac0a27e..ad941681 100644 --- a/src/api/thrsys/thrProductsExport.js +++ b/src/api/thrsys/thrProductsExport.js @@ -31,3 +31,11 @@ export function exportExcel(query) { }); } +export function exportExcelAll(query) { + return axios({ + url: "/udiwms/thrProducts/importLog/exportAll", + method: "post", + data: query + }); +} + diff --git a/src/views/thirdSys/product/thrProductsExport.vue b/src/views/thirdSys/product/thrProductsExport.vue index 8b11fc1f..eddb7c33 100644 --- a/src/views/thirdSys/product/thrProductsExport.vue +++ b/src/views/thirdSys/product/thrProductsExport.vue @@ -34,8 +34,8 @@ {{ status[scope.row.status] }} - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +