From 985979d1915ddee9e426260c123f2f7d93e3fcab Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期三, 15 十一月 2023 17:51:54 +0800
Subject: [PATCH] 	modified:   src/views/plan/customerorder/sample-customerorder-form.vue 	modified:   src/views/plan/masterproductionschedule/auto-manufacturingorder.vue

---
 src/views/plan/customerorder/schedule-table.vue |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/views/plan/customerorder/schedule-table.vue b/src/views/plan/customerorder/schedule-table.vue
index a5588d4..04a66bb 100644
--- a/src/views/plan/customerorder/schedule-table.vue
+++ b/src/views/plan/customerorder/schedule-table.vue
@@ -31,7 +31,7 @@
             width="120px"
           >
             <template slot-scope="scope">
-              <el-form-item>{{ scope.row.customerOrderNo }}</el-form-item>
+              <el-form-item>{{ scope.row.contractNo }}</el-form-item>
             </template>
           </el-table-column>
           <el-table-column
@@ -53,7 +53,7 @@
           >
             <template slot-scope="scope">
               <el-form-item class="inline-el-hidden">{{
-                scope.row.partName
+                scope.row.productName
               }}</el-form-item>
             </template>
           </el-table-column>
@@ -67,7 +67,7 @@
               <el-form-item>{{ scope.row.buyQtyDue }}</el-form-item>
             </template>
           </el-table-column>
-          <el-table-column
+          <!-- <el-table-column
             header-align="center"
             align="center"
             label="宸茶鍒掓暟閲�"
@@ -76,7 +76,7 @@
             <template slot-scope="scope">
               <el-form-item>{{ scope.row.requireNumber }}</el-form-item>
             </template>
-          </el-table-column>
+          </el-table-column> -->
           <el-table-column
             prop="remainderRequired"
             header-align="center"
@@ -103,7 +103,7 @@
             width="60px"
           >
             <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
+              <span>{{ scope.row.otcUnit }}</span>
             </template>
           </el-table-column>
           <el-table-column
@@ -138,7 +138,7 @@
             width="160px"
           >
             <template slot-scope="scope">
-              <el-form-item>{{ scope.row.wantedDeliveryDate }}</el-form-item>
+              <el-form-item>{{ scope.row.deliveryDate }}</el-form-item>
             </template>
           </el-table-column>
           <el-table-column
@@ -222,11 +222,13 @@
         this.dataForm.customer = []
         const _that = this
         customer.forEach((item) => {
+          console.log(item);
           const outPutBatchList = []
           _that.$set(item, 'outPutBatchList', outPutBatchList)
           customerList.push(item)
         })
         this.dataForm.customer = JSON.parse(JSON.stringify(customerList))
+        console.log(this.dataForm.customer);
       })
     },
     dataFormSubmit() {

--
Gitblit v1.9.3