From 2ea24bd1b01c3db7fe6316c801cd24c954f97573 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期二, 17 十月 2023 12:52:00 +0800 Subject: [PATCH] 删除报价单状态默认值和bug修复(5245) --- src/views/sales/quotation/AddQuotationDialog.vue | 4 ++-- src/views/sales/salesDetails/index.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/sales/quotation/AddQuotationDialog.vue b/src/views/sales/quotation/AddQuotationDialog.vue index 0c8ae5d..3909be1 100644 --- a/src/views/sales/quotation/AddQuotationDialog.vue +++ b/src/views/sales/quotation/AddQuotationDialog.vue @@ -362,7 +362,7 @@ member_id: [{ required: true, message: "璇烽�夋嫨璐熻矗浜�", trigger: "change" }] }, memberOptions: [], - quotationStatusOptions: [{ id: 1, name: "涓嶇煡閬�" }], // 鎶ヤ环鍗曠姸鎬� + quotationStatusOptions: [], // 鎶ヤ环鍗曠姸鎬� currencyOptions: [{ id: 1, name: "浜烘皯甯�" }], // 甯佺 approvalWorkflowOptions: [], // 瀹℃壒娴佺▼ productTableList: {}, @@ -508,7 +508,7 @@ products: this.tableData, codeStandID: data.ID, codeRule: this.codeRule, - client_id: this.clientId || 0, + client_id: this.clientId || 0 } return params }, diff --git a/src/views/sales/salesDetails/index.vue b/src/views/sales/salesDetails/index.vue index 914a8bd..0e4a733 100644 --- a/src/views/sales/salesDetails/index.vue +++ b/src/views/sales/salesDetails/index.vue @@ -239,7 +239,7 @@ let params = {} if (this.addConfig.id) { params = { - clientId: this.addConfig.id, + number: this.addConfig.id, page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize } -- Gitblit v1.8.0