From 26bda7475ed2fa2f5a017993a1d3b195838ad9e4 Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期五, 12 四月 2024 17:10:05 +0800
Subject: [PATCH] 修改销售订单

---
 src/views/plan/customerorder/index.vue |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/views/plan/customerorder/index.vue b/src/views/plan/customerorder/index.vue
index 4ba8c0f..631cd1c 100644
--- a/src/views/plan/customerorder/index.vue
+++ b/src/views/plan/customerorder/index.vue
@@ -57,6 +57,12 @@
             @click="() => (exportDialogVisible = true)"
             >瀵煎嚭鍙拌处</el-button
           >
+          <!-- <el-button
+            style="margin-left: 10px"
+            type="primary"
+            @click="() => ($refs.technology.init())"
+            >缂栧啓鎶�鏈氦搴曞崟</el-button
+          > -->
         </template>
       </ttable>
       <!-- 寮圭獥, 鏃ユ湡閫夋嫨 -->
@@ -347,6 +353,7 @@
         ></el-table-column>
       </el-table>
     </el-dialog>
+    <technology-form ref="technology"></technology-form>
   </div>
 </template>
 
@@ -358,6 +365,7 @@
 } from '@/api/plan/customerOrderInterrelated'
 import ConfirmPullCustomerorder from './confirm-pull-customerorder'
 import TableForm from './customerorder-form'
+import TechnologyForm from './technology-form.vue'
 import TableFormDEesc from './customerorder-form-desc'
 import SampleTableForm from './sample-customerorder-form'
 import { mapGetters } from 'vuex'
@@ -400,6 +408,7 @@
       interrelatedOrderId: null,
       interrelatedOrderData: [],
       showInterrelatedOrderDialog: false,
+      technologyDialog:true,
       uniqueStateArr: [],
       dataForm: {
         selectTime: null,
@@ -963,6 +972,7 @@
     SalesPartBatchDialog,
     TableFormDEesc,
     CustomerorderReturnDialog,
+    TechnologyForm,
   },
   computed: {
     ...mapGetters(['permissions']),
@@ -1001,6 +1011,7 @@
   created() {
     // this.getManufactureAttrs()
     this.getTitles()
+    if (this.permissions.plan_customerorder_add) {
     this.table.toolbar.push({
       text: '鏂板閿�鍞鍗�',
       type: 'primary',
@@ -1008,6 +1019,7 @@
       disabled: false,
       permitArr: [],
     })
+    }
     if (this.permissions.customerorder_from_otc) {
       this.table.toolbar.push({
         text: '鑾峰彇閿�鍞鍗�',
@@ -1054,6 +1066,7 @@
             fun: this.downloadProductionScheduling,
         })
     }
+    if(this.permissions.plan_relevance_order){
     this.table.toolbar.push({
       text: '鍏宠仈璁㈠崟',
       disabled: false,
@@ -1061,6 +1074,7 @@
       fun: this.interrelatedOrderFun,
       permitArr: [],
     })
+    }
     if (this.permissions.customerorder_create_masterplan) {
       this.table.toolbar.push({
         text: '涓荤敓浜ц鍒�',
@@ -1185,8 +1199,9 @@
       this.getData()
     },
 
-    getData() {
-      this.$refs.customerOrderTable.getDataList()
+    async getData() {
+      await this.$refs.customerOrderTable.getDataList()
+      this.$refs.customerOrderTable.toggleRowExpansion()
     },
     // 鑾峰彇鏁版嵁鍒楄〃鍘婚櫎宸插畬鎴愮姸鎬佺殑
     handleDataList(command) {

--
Gitblit v1.9.3