From 943e43fac9e2fefabaeffb20445361d5d02cea25 Mon Sep 17 00:00:00 2001
From: 86134 <aa>
Date: 星期一, 20 十一月 2023 10:24:45 +0800
Subject: [PATCH] 11

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

diff --git a/src/views/plan/customerorder/schedule-table.vue b/src/views/plan/customerorder/schedule-table.vue
index a5588d4..ac0ed90 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"
@@ -85,14 +85,15 @@
             width="170px"
           >
             <template scope="scope">
-              <el-form-item
+              <el-form-item>{{ scope.row.qtyPlaned }}</el-form-item>
+              <!-- <el-form-item
                 :prop="'customer.' + scope.$index"
                 :rules="rules.qtyPlaned"
               >
                 <el-input
                   v-model="scope.row.qtyPlaned"
                   placeholder=""
-                ></el-input>
+                ></el-input> -->
               </el-form-item>
             </template>
           </el-table-column>
@@ -103,7 +104,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 +139,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,17 +223,26 @@
         this.dataForm.customer = []
         const _that = this
         customer.forEach((item) => {
+           item.qtyPlaned=item.buyQtyDue
           const outPutBatchList = []
           _that.$set(item, 'outPutBatchList', outPutBatchList)
           customerList.push(item)
         })
         this.dataForm.customer = JSON.parse(JSON.stringify(customerList))
       })
+      // this.dataForm.forEach(item=>{
+      //   console.log(1111);
+      //       console.log("寰幆",item);
+      //       item.qtyPlaned=item.buyQtyDue
+      //   })
+        console.log("data",this.dataForm);
     },
     dataFormSubmit() {
       this.isSubmit = true
       this.$refs.dataForm.validate((valid) => {
         if (valid) {
+          // console.log(this.dataForm);
+          // return
           checkSchedule(this.dataForm.customer)
             .then((res) => {
               if (res.data.data.success) {

--
Gitblit v1.9.3