From ad1d03df9261a3274b71cb76576584c5e3f46445 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 19 Apr 2023 17:42:58 +0800 Subject: [PATCH 01/20] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceRegistration.vue | 1 - src/views/inventory/InvSupPreProducts.vue | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index 8b6a791..3b9b1ce 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -690,7 +690,6 @@ export default { } this.filterQuery.page = 1; - this.filterQuery.supInoivceSearch=null; this.getList(); }, hideSearch() { diff --git a/src/views/inventory/InvSupPreProducts.vue b/src/views/inventory/InvSupPreProducts.vue index dae6671..83f6298 100644 --- a/src/views/inventory/InvSupPreProducts.vue +++ b/src/views/inventory/InvSupPreProducts.vue @@ -266,7 +266,7 @@ export default { }, getInvList() { let query = { - advanceType: true, + advanceType: 2, }; getInvListByUser(query) .then((response) => { From 36dca1d91e59019c36d916a397bd07d53550ca17 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 19 Apr 2023 20:58:14 +0800 Subject: [PATCH 02/20] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/locUdi/UdiSupplement.vue | 2 +- src/views/inout/InvoiceRegistration.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/basic/locUdi/UdiSupplement.vue b/src/views/basic/locUdi/UdiSupplement.vue index 9d2fc44..86a57ee 100644 --- a/src/views/basic/locUdi/UdiSupplement.vue +++ b/src/views/basic/locUdi/UdiSupplement.vue @@ -331,7 +331,7 @@ export default { return !row.check; }, handleCurrentChange(val) { - this.unionQuery.page = val; + this.unionQuery.page = val.page; this.getList(); }, tableRowClassName({row, rowIndex}) { diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index 3b9b1ce..61e2e77 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -737,7 +737,7 @@ export default { getBusType() { let query = { code: this.filterQuery.invCode, - enabled: true, + enable: true, vueType: "supInvoice", }; getLocalJoinByUser(query) From 9f2dfa497f5aef5e534055a657380773b075ae86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Wed, 19 Apr 2023 22:51:16 +0800 Subject: [PATCH 03/20] =?UTF-8?q?=E5=86=85=E9=83=A8=E7=A0=81=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/order.js | 8 + src/views/basic/business/stockOrderPrint.vue | 546 ++++++++++++++++++ src/views/inventory/inner/innerCodeDetail.vue | 7 +- src/views/inventory/inner/innerOrder.vue | 6 +- .../inventory/inner/innerOrderEditDialog.vue | 34 +- .../inner/innerOrderSelectProduct.vue | 6 +- 6 files changed, 597 insertions(+), 10 deletions(-) create mode 100644 src/views/basic/business/stockOrderPrint.vue diff --git a/src/api/inout/order.js b/src/api/inout/order.js index a32fa73..031b8d6 100644 --- a/src/api/inout/order.js +++ b/src/api/inout/order.js @@ -505,3 +505,11 @@ export function updateOrderDetailBiz(params) { }); } + +export function orderDetailAdd(params) { + return axios({ + url: "/inv/inner/order/orderDetailAdd", + method: "post", + data: params + }); +} diff --git a/src/views/basic/business/stockOrderPrint.vue b/src/views/basic/business/stockOrderPrint.vue new file mode 100644 index 0000000..268cf10 --- /dev/null +++ b/src/views/basic/business/stockOrderPrint.vue @@ -0,0 +1,546 @@ + + + + + diff --git a/src/views/inventory/inner/innerCodeDetail.vue b/src/views/inventory/inner/innerCodeDetail.vue index 166ac7c..51a311b 100644 --- a/src/views/inventory/inner/innerCodeDetail.vue +++ b/src/views/inventory/inner/innerCodeDetail.vue @@ -273,7 +273,7 @@ export default { getOrderQRCodeTextList() { this.loading = true; - filterPrint({sOrderId :this.query.orderIdFk}) //查找该单号下的所有条码 + filterPrint({sOrderId :this.query.sOrderId}) //查找该单号下的所有条码 .then((response) => { console.log(response) this.codeArray = response.data.list || []; @@ -378,7 +378,7 @@ export default { type: "warning", }).then(() => { this.loading = true; - generateInnerQRCodeText({orderIdFk: this.formData.id}) + generateInnerQRCodeText({orderIdFk: this.formData.recordKey}) .then(response => { this.loading = false; if (response.code === 20000) { @@ -427,8 +427,9 @@ export default { if (this.$isNotBlank(this.inQuery.id)) { this.formData = this.inQuery.formData; this.query.orderId = this.inQuery.id; - this.query.orderIdFk = this.formData.id; + this.query.orderIdFk = this.formData.recordKey; this.query.sOrderId = this.inQuery.id; + console.log(this.query) this.getOrderQRCodeTextList(); } }, diff --git a/src/views/inventory/inner/innerOrder.vue b/src/views/inventory/inner/innerOrder.vue index e080ee3..c0a3a41 100644 --- a/src/views/inventory/inner/innerOrder.vue +++ b/src/views/inventory/inner/innerOrder.vue @@ -45,8 +45,8 @@ @@ -239,7 +239,7 @@ export default { }); }, handleDetail(row) { - let query = {orderIdFk: row.id}; + let query = {orderIdFk: row.recordKey}; this.loading = true; listInnerOrderDetail(query) //查找该单号下的所有条码 .then((response) => { diff --git a/src/views/inventory/inner/innerOrderEditDialog.vue b/src/views/inventory/inner/innerOrderEditDialog.vue index d1fa892..b4b6dab 100644 --- a/src/views/inventory/inner/innerOrderEditDialog.vue +++ b/src/views/inventory/inner/innerOrderEditDialog.vue @@ -108,6 +108,7 @@ :closeDialog="closeDialogC2" :data="thisData" :pId="pId" + :billNo="billNo" :filterType="2" > @@ -123,6 +124,11 @@ :append-to-body='true' > @@ -131,7 +137,7 @@ diff --git a/vue.config.js b/vue.config.js index d246608..2eee3de 100644 --- a/vue.config.js +++ b/vue.config.js @@ -35,7 +35,7 @@ module.exports = { proxy: { // detail: https://cli.vuejs.org/config/#devserver-proxy [process.env.VUE_APP_BASE_API]: { - target: `http://192.168.0.43:9993/`, + target: process.env.VUE_APP_BASE_API, changeOrigin: true, pathRewrite: { ['^' + process.env.VUE_APP_BASE_API]: '' From f6f1d3c0c5738bd823e02272629711d0ee2eb32d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Thu, 20 Apr 2023 15:20:22 +0800 Subject: [PATCH 11/20] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept/authDept.vue | 1 - src/views/thirdSys/corps/thrCorpsExport.vue | 5 ++--- src/views/thirdSys/corps/thrCorpsExportSmp.vue | 5 ++--- src/views/thirdSys/invProducts/thrInvProductsExport.vue | 9 +++------ src/views/thirdSys/order/thrOrderExport.vue | 5 ++--- src/views/thirdSys/product/thrProductsExport.vue | 1 - 6 files changed, 9 insertions(+), 17 deletions(-) diff --git a/src/views/system/dept/authDept.vue b/src/views/system/dept/authDept.vue index 46f51c6..2eab3b8 100644 --- a/src/views/system/dept/authDept.vue +++ b/src/views/system/dept/authDept.vue @@ -601,7 +601,6 @@ export default { }); }, cancelDialog() { - tQuer; this.formVisible = false; // 刷新表单 this.$refs["dataForm"].resetFields(); diff --git a/src/views/thirdSys/corps/thrCorpsExport.vue b/src/views/thirdSys/corps/thrCorpsExport.vue index 421f914..e5c3e24 100644 --- a/src/views/thirdSys/corps/thrCorpsExport.vue +++ b/src/views/thirdSys/corps/thrCorpsExport.vue @@ -71,6 +71,7 @@ import {formatDate} from "@/utils/date"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -154,8 +155,7 @@ export default { this.thrCorpSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); @@ -170,7 +170,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/corps/thrCorpsExportSmp.vue b/src/views/thirdSys/corps/thrCorpsExportSmp.vue index 02398d7..69950a0 100644 --- a/src/views/thirdSys/corps/thrCorpsExportSmp.vue +++ b/src/views/thirdSys/corps/thrCorpsExportSmp.vue @@ -68,6 +68,7 @@ import axios from "axios"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -153,8 +154,7 @@ export default { this.thrCorpSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); @@ -171,7 +171,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/invProducts/thrInvProductsExport.vue b/src/views/thirdSys/invProducts/thrInvProductsExport.vue index 8958620..4d5d91f 100644 --- a/src/views/thirdSys/invProducts/thrInvProductsExport.vue +++ b/src/views/thirdSys/invProducts/thrInvProductsExport.vue @@ -108,6 +108,7 @@ import axios from "axios"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -191,8 +192,8 @@ export default { this.thrInvProductsSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + + let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/invProducts/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); fetch(href) @@ -208,10 +209,6 @@ export default { a.click(); this.getList(); }); - - }); - - }, cancelDialog(val) { diff --git a/src/views/thirdSys/order/thrOrderExport.vue b/src/views/thirdSys/order/thrOrderExport.vue index 24b01ed..68f266c 100644 --- a/src/views/thirdSys/order/thrOrderExport.vue +++ b/src/views/thirdSys/order/thrOrderExport.vue @@ -75,6 +75,7 @@ import {formatDate} from "@/utils/date"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { type: 1, @@ -158,8 +159,7 @@ export default { this.thrOrderSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); var timestamp = formatDate(new Date(), "yyyyMMddhhmmss") @@ -173,7 +173,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/product/thrProductsExport.vue b/src/views/thirdSys/product/thrProductsExport.vue index bcf1ca7..5d0be0c 100644 --- a/src/views/thirdSys/product/thrProductsExport.vue +++ b/src/views/thirdSys/product/thrProductsExport.vue @@ -159,7 +159,6 @@ export default { this.thrProductsSelectVisible = true; }, downloadExcel(row) { - debugger let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); From ec7ea1c4520dc4e234784797d01e05db0d2ab102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Thu, 20 Apr 2023 17:16:23 +0800 Subject: [PATCH 12/20] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=89=A9=E8=B5=84?= =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E6=98=BE=E7=A4=BA=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/product.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/basic/product/product.vue b/src/views/basic/product/product.vue index bf9ceed..7e6892d 100644 --- a/src/views/basic/product/product.vue +++ b/src/views/basic/product/product.vue @@ -140,7 +140,7 @@ - + @@ -385,7 +386,7 @@ border > - + @@ -401,7 +402,7 @@ > 单据下载时间间隔(单位:分钟): 单据下载时间间隔(单位:分钟):  添加扫码单据类型 + >添加扫码单据类型 @@ -461,7 +462,7 @@ size="small" :disabled="configQuery.downstreamEnable" @click.native="remveBus(scope.$index, scope.row)" - >移除 + >移除 @@ -488,7 +489,7 @@ size="small" :disabled="configQuery.downstreamEnable" @click="addChangeBusTypeDialog()" - >添加业务单据类型 + >添加业务单据类型 @@ -522,7 +523,7 @@ size="small" :disabled="configQuery.downstreamEnable" @click.native="removeChangeBus(scope.$index, scope.row)" - >移除 + >移除 @@ -540,7 +541,8 @@ >
选入选入 +
选入选入 +
选入选入 +
{}); + .catch(() => { + }); }, testConnect() { @@ -826,7 +832,8 @@ export default { this.busTypes = response.data.list || []; this.total = response.data.total || 0; }) - .catch(() => {}); + .catch(() => { + }); }, addBusTypeDialog() { @@ -952,6 +959,7 @@ export default { /deep/ .el-select { width: 100px; } + /deep/ .el-collapse-item__header { font-size: 18px; font-weight: bold;