From 9edc20f04ae1cdc847a2f709831b8d0e6f4f0eda Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期三, 07 六月 2023 14:47:36 +0800
Subject: [PATCH] 1.生产入库无源单提交测试OK   生产入库开发完成2.MES工单 流程单新增工单编码二维码

---
 src/views/produceManager/productWarehouse.vue |  784 +++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 576 insertions(+), 208 deletions(-)

diff --git a/src/views/produceManager/productWarehouse.vue b/src/views/produceManager/productWarehouse.vue
index 6de1dca..30e0b39 100644
--- a/src/views/produceManager/productWarehouse.vue
+++ b/src/views/produceManager/productWarehouse.vue
@@ -141,6 +141,7 @@
                   v-model="form.saleOrderCode"
                   readonly
                   style="width: 200px"
+                  @change="getProductInHouseOrderSearch"
                 />
                 <!--                disabled-->
               </el-form-item>
@@ -148,13 +149,13 @@
 
             <div style="display: flex">
               <el-form-item label="浜у搧缂栫爜" style=" display: flex;">
-                <el-input v-model="form.partcode" placeholder="璇疯緭鍏�" style="width: 200px" />
+                <el-input v-model="form.partcode" placeholder="璇疯緭鍏�" style="width: 200px" @change="getProductInHouseOrderSearch" />
               </el-form-item>
               <el-form-item label="浜у搧鍚嶇О" style=" display: flex;">
-                <el-input v-model="form.partname" style="width: 200px" placeholder="璇疯緭鍏�" />
+                <el-input v-model="form.partname" style="width: 200px" placeholder="璇疯緭鍏�" @change="getProductInHouseOrderSearch" />
               </el-form-item>
               <el-form-item label="浜у搧瑙勬牸" style=" display: flex;">
-                <el-input v-model="form.partspec" style="width: 200px" placeholder="璇疯緭鍏�" />
+                <el-input v-model="form.partspec" style="width: 200px" placeholder="璇疯緭鍏�" @change="getProductInHouseOrderSearch" />
               </el-form-item>
               <el-form-item
                 label="宸ュ崟鏃ユ湡"
@@ -170,6 +171,7 @@
                   :clearable="false"
                   start-placeholder="寮�濮嬫棩鏈�"
                   end-placeholder="缁撴潫鏃ユ湡"
+                  @change="getProductInHouseOrderSearch"
                 />
               </el-form-item>
             </div>
@@ -206,15 +208,21 @@
               <el-date-picker
                 v-model="form.lm_date"
                 style="width: 200px"
+                readonly
                 type="date"
                 placeholder="閫夋嫨鏃ユ湡"
               />
             </el-form-item>
             <el-form-item label="鍗曟嵁缂栧彿" style=" display: flex;">
-              <el-input v-model="form.OrgName" placeholder="璇疯緭鍏�" style="width: 200px" />
+              <el-input
+                v-model="form.hbillno"
+                readonly
+                placeholder="璇疯緭鍏�"
+                style="width: 200px"
+              />
             </el-form-item>
 
-            <el-form-item label="鍏ュ簱浠撳簱" style=" display: flex;">
+            <el-form-item label="鍏ュ簱浠撳簱" required style=" display: flex;">
               <el-select
                 v-model="form.stockcode"
                 :popper-append-to-body="false"
@@ -237,7 +245,14 @@
             class="bodySearchReset"
             :style="{marginLeft:$store.state.app.sidebar.opened? $store.state.settings.menuIsHorizontal?'15%':'3%':'10%'}"
           >
-            <el-button v-waves type="primary" icon="el-icon-s-promotion" @click="submit">鍏ュ簱鎻愪氦</el-button>
+            <el-button
+              v-waves
+              type="primary"
+              icon="el-icon-s-promotion"
+              :disabled="$store.state.app.buttonIsDisabled"
+              @click="submit"
+            >鍏ュ簱鎻愪氦
+            </el-button>
             <!--            <el-button v-waves type="info" icon="el-icon-refresh" @click="reset">閲嶇疆</el-button>-->
           </div>
         </el-form>
@@ -275,9 +290,9 @@
                   :header-cell-style="this.$headerCellStyle"
                   :cell-style="this.$cellStyle"
                   @selection-change="handleSelectionChange"
-                  @cell-dblclick="cellDblclick"
-                  @cell-click="cellClick"
                 >
+                  <!--                  @cell-dblclick="cellDblclick"-->
+                  <!--                  @cell-click="cellClick"-->
                   <el-table-column
                     type="selection"
                     width="50"
@@ -290,32 +305,33 @@
                     label="搴忓彿"
                   />
 
-                  <el-table-column
-                    prop="stockcode"
-                    label="浠撳簱"
-                    width="160"
-                    show-tooltip-when-overflow
-                  >
-                    <template slot-scope="{row}">
-                      <div
-                        v-if="!(row.index === tabClickIndex && tabClickLabel === '浠撳簱')"
-                      >
-                        {{ row.stockcode ? stockcodeArr.find(i => i.code === row.stockcode).name : '/' }}
-                      </div>
-                      <el-select
-                        v-if="row.index === tabClickIndex && tabClickLabel === '浠撳簱'"
-                        v-model="row.stockcode"
-                        placeholder="璇烽�夋嫨"
-                      >
-                        <el-option
-                          v-for="item in stockcodeArr"
-                          :key="item.code"
-                          :label="item.name"
-                          :value="item.code"
-                        />
-                      </el-select>
-                    </template>
-                  </el-table-column>
+                  <!--                  <el-table-column-->
+                  <!--                    prop="stockcode"-->
+                  <!--                    label="浠撳簱"-->
+                  <!--                    width="160"-->
+                  <!--                    show-tooltip-when-overflow-->
+                  <!--                  >-->
+                  <!--                    <template slot-scope="{row}">-->
+                  <!--                      <div>{{ row.stockcode ? stockcodeArr.find(i => i.code === row.stockcode).name : '/' }}</div>-->
+                  <!--                      &lt;!&ndash;                      <div&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        v-if="!(row.index === tabClickIndex && tabClickLabel === '浠撳簱')"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                      >&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        {{ row.stockcode ? stockcodeArr.find(i => i.code === row.stockcode).name : '/' }}&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                      </div>&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                      <el-select&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        v-if="row.index === tabClickIndex && tabClickLabel === '浠撳簱'"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        v-model="row.stockcode"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        placeholder="璇烽�夋嫨"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                      >&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        <el-option&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                          v-for="item in stockcodeArr"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                          :key="item.code"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                          :label="item.name"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                          :value="item.code"&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                        />&ndash;&gt;-->
+                  <!--                      &lt;!&ndash;                      </el-select>&ndash;&gt;-->
+                  <!--                    </template>-->
+                  <!--                  </el-table-column>-->
                   <el-table-column
                     prop="inbarcode"
                     label="鍏ュ簱鏉$爜"
@@ -433,17 +449,17 @@
                     label="搴忓彿"
                   />
 
-                  <el-table-column
-                    prop="stockname"
-                    label="浠撳簱"
-                    width="110"
-                  >
-                    <template slot-scope="{row}">
-                      <div v-if="row.stockname">{{ row.stockname }}</div>
-                      <div v-else>/</div>
-                    </template>
+                  <!--                  <el-table-column-->
+                  <!--                    prop="stockname"-->
+                  <!--                    label="浠撳簱"-->
+                  <!--                    width="110"-->
+                  <!--                  >-->
+                  <!--                    <template slot-scope="{row}">-->
+                  <!--                      <div v-if="row.stockname">{{ row.stockname }}</div>-->
+                  <!--                      <div v-else>/</div>-->
+                  <!--                    </template>-->
 
-                  </el-table-column>
+                  <!--                  </el-table-column>-->
                   <el-table-column
                     prop="inbarcode"
                     label="鍏ュ簱鏉$爜"
@@ -554,15 +570,15 @@
                     fixed
                     label="搴忓彿"
                   />
-                  <el-table-column
-                    prop="stockcode"
-                    label="浠撳簱"
-                    width="110"
-                  >
-                    <template slot-scope="{row}">
-                      <div>{{ stockcodeArr.find(i=>i.code===row.stockcode).name }}</div>
-                    </template>
-                  </el-table-column>
+                  <!--                  <el-table-column-->
+                  <!--                    prop="stockcode"-->
+                  <!--                    label="浠撳簱"-->
+                  <!--                    width="110"-->
+                  <!--                  >-->
+                  <!--                    <template slot-scope="{row}">-->
+                  <!--                      <div>{{ stockcodeArr.find(i => i.code === row.stockcode).name }}</div>-->
+                  <!--                    </template>-->
+                  <!--                  </el-table-column>-->
                   <!--                    <template slot-scope="{row}">-->
                   <!--                      <div v-if="row.stockname">{{ row.stockname }}</div>-->
                   <!--                      <div v-else>/</div>-->
@@ -677,9 +693,15 @@
   ProductInHouseOrderSearch, ProductInHouseOrderSeave,
   ProductInHouseWkshopOrder
 } from '@/api/produceManager'
-import { handleDatetime, handleDatetime2 } from '@/utils/global'
-import { ErpUserSelect, ErpWarehouseSelect, ErpWkshopDepartmentSelect } from '@/api/basicInfo'
+import { getTPlusToken, handleDatetime, handleDatetime2 } from '@/utils/global'
+import {
+  ErpUserSelect,
+  ErpWarehouseSelect,
+  ErpWkshopDepartmentSelect
+} from '@/api/basicInfo'
 import { getCookie } from '@/utils/auth'
+import Vue from 'vue'
+import axios from 'axios'
 
 export default {
   name: 'Zzjg',
@@ -703,7 +725,7 @@
         orderdate: '', // 宸ュ崟鏃ユ湡
 
         saleOrderCode: '', // 閿�鍞鍗�
-        lm_date: '', // 鍗曟嵁鏃ユ湡
+        lm_date: new Date(), // 鍗曟嵁鏃ユ湡
         stockcode: '' // 鍏ュ簱浠撳簱
 
       },
@@ -773,12 +795,16 @@
     documentTypeChange(val) {
       this.form.erpordercode = ''
       this.form.wkshopcode = ''
+      this.reset()
     },
     // 鐢熶骇杞﹂棿鏀瑰彉
     async wkshopcodeChange(val) {
       this.form.erpordercode = ''
       this.form.mesordercode = ''
       this.form.saleOrderCode = ''
+      this.tableDataDetail = []
+      this.tableDataSummary = []
+      this.multipleSelection = []
       const data = {
         ordertype: this.form.documentType,
         wkshopcode: val
@@ -837,8 +863,11 @@
       this.form.partname = ''
       this.form.partspec = ''
       this.form.orderdate = ''
+      this.form.stockcode = ''
 
       this.tableDataDetail = []
+      this.tableDataSummary = []
+      this.multipleSelection = []
     },
 
     // 琛ㄦ牸鍗曞厓鏍煎弻鍑�
@@ -882,180 +911,519 @@
       //   this.$refs.tableDataRef.doLayout()
       // })
 
-      const stockcodeArr = [...new Set(this.multipleSelection.map(i => i.stockcode))]// 鏁扮粍鍘婚噸
+      // const stockcodeArr = [...new Set(this.multipleSelection.map(i => i.stockcode))]// 鏁扮粍鍘婚噸
 
-      // const partcodeArr = [...new Set(this.multipleSelection.map(i => i.partcode))]// 鏁扮粍鍘婚噸
+      const partcodeArr = [...new Set(this.multipleSelection.map(i => i.partcode))]// 鏁扮粍鍘婚噸
       const newData = []
 
-      const Array2D = []
+      // const Array2D = []
+      //
+      // stockcodeArr.forEach(i => {
+      //   Array2D.push(this.multipleSelection.filter(j => j.stockcode === i))
+      // })
 
-      stockcodeArr.forEach(i => {
-        Array2D.push(this.multipleSelection.filter(j => j.stockcode === i))
-      })
-
-      Array2D.forEach(k => {
-        const partcodeArr = [...new Set(k.map(j => j.partcode))]
-        partcodeArr.forEach(i => {
-          const t = k.find(j => j.partcode === i)
-          let sum = 0
-          const good_qty = k.filter(j => j.partcode === i).map(j => parseFloat(j.good_qty)).reduce((pre, curr) => {
-            sum = pre + curr
-            return sum
-          })
-          sum = 0
-          const inhouseqty = k.filter(j => j.partcode === i).map(j => parseFloat(j.inhouseqty)).reduce((pre, curr) => {
-            sum = pre + curr
-            return sum
-          })
-          sum = 0
-          const stinhouseqty = k.filter(j => j.partcode === i).map(j => parseFloat(j.stinhouseqty)).reduce((pre, curr) => {
-            sum = pre + curr
-            return sum
-          })
-          newData.push(
-            {
-              stockcode: t.stockcode,
-              partcode: t.partcode,
-              partname: t.partname,
-              partspec: t.partspec,
-              qty: t.qty,
-              good_qty,
-              inhouseqty,
-              stinhouseqty,
-              unitid: t.unitid,
-              unitname: t.unitname,
-              sourceVoucherDetailId: t.sbid,
-              saleOrderDetailId: t.saleOrderDetailId,
-              ManufactureOrderDetailId: t.sbid,
-              stck_id: this.stockcodeArr.find(i => i.code === t.stockcode).id,
-              SourceVoucherDetailIdByMergedFlow: t.sbid,
-              materiel_code: t.partcode,
-              warehouse: t.stockcode,
-              materiel_id: t.materiel_id
-            }
-          )
-        })
-      })
+      // Array2D.forEach(k => {
+      //   const partcodeArr = [...new Set(k.map(j => j.partcode))]
+      //   partcodeArr.forEach(i => {
+      //     const t = k.find(j => j.partcode === i)
+      //     let sum = 0
+      //     const good_qty = k.filter(j => j.partcode === i).map(j => parseFloat(j.good_qty)).reduce((pre, curr) => {
+      //       sum = pre + curr
+      //       return sum
+      //     })
+      //     sum = 0
+      //     const inhouseqty = k.filter(j => j.partcode === i).map(j => parseFloat(j.inhouseqty)).reduce((pre, curr) => {
+      //       sum = pre + curr
+      //       return sum
+      //     })
+      //     sum = 0
+      //     const stinhouseqty = k.filter(j => j.partcode === i).map(j => parseFloat(j.stinhouseqty)).reduce((pre, curr) => {
+      //       sum = pre + curr
+      //       return sum
+      //     })
+      //     newData.push(
+      //       {
+      //         stockcode: t.stockcode,
+      //         partcode: t.partcode,
+      //         partname: t.partname,
+      //         partspec: t.partspec,
+      //         qty: t.qty,
+      //         good_qty,
+      //         inhouseqty,
+      //         stinhouseqty,
+      //         unitid: t.unitid,
+      //         unitname: t.unitname,
+      //         sourceVoucherDetailId: t.sbid,
+      //         saleOrderDetailId: t.saleOrderDetailId,
+      //         ManufactureOrderDetailId: t.sbid,
+      //         stck_id: this.stockcodeArr.find(i => i.code === t.stockcode).id,
+      //         SourceVoucherDetailIdByMergedFlow: t.sbid,
+      //         materiel_code: t.partcode,
+      //         warehouse: t.stockcode,
+      //         materiel_id: t.materiel_id
+      //       }
+      //     )
+      //   })
+      // })
       // console.log(Array2D, 'Array2D')
       // console.log(newData, 'newData')
 
-      // partcodeArr.forEach(i => {
-      //   const t = this.multipleSelection.find(j => j.partcode === i)
-      //   let sum = 0
-      //   const good_qty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.good_qty)).reduce((pre, curr) => {
-      //     sum = pre + curr
-      //     return sum
-      //   })
-      //   sum = 0
-      //   const inhouseqty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.inhouseqty)).reduce((pre, curr) => {
-      //     sum = pre + curr
-      //     return sum
-      //   })
-      //   sum = 0
-      //   const stinhouseqty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.stinhouseqty)).reduce((pre, curr) => {
-      //     sum = pre + curr
-      //     return sum
-      //   })
-      //   newData.push(
-      //     {
-      //       partcode: i,
-      //       partname: t.partname,
-      //       partspec: t.partspec,
-      //       qty: t.qty,
-      //       good_qty,
-      //       inhouseqty,
-      //       stinhouseqty
-      //     }
-      //   )
-      // })
-      this.tableDataSummary = newData.flat()
+      partcodeArr.forEach(i => {
+        const t = this.multipleSelection.find(j => j.partcode === i)
+        let sum = 0
+        const good_qty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.good_qty)).reduce((pre, curr) => {
+          sum = pre + curr
+          return sum
+        })
+        sum = 0
+        const inhouseqty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.inhouseqty)).reduce((pre, curr) => {
+          sum = pre + curr
+          return sum
+        })
+        sum = 0
+        const stinhouseqty = this.multipleSelection.filter(j => j.partcode === i).map(j => parseFloat(j.stinhouseqty)).reduce((pre, curr) => {
+          sum = pre + curr
+          return sum
+        })
+        newData.push(
+          {
+            // partcode: i,
+            // partname: t.partname,
+            // partspec: t.partspec,
+            // qty: t.qty,
+            // good_qty,
+            // inhouseqty,
+            // stinhouseqty
+
+            stockcode: t.stockcode,
+            partcode: t.partcode,
+            partname: t.partname,
+            partspec: t.partspec,
+            qty: t.qty,
+            good_qty,
+            inhouseqty,
+            stinhouseqty,
+            unitid: t.unitid,
+            unitname: t.unitname,
+            sourceVoucherDetailId: t.sbid,
+            saleOrderDetailId: t.saleOrderDetailId,
+            ManufactureOrderDetailId: t.sbid,
+            stck_id: t.stockcode ? this.stockcodeArr.find(i => i.code === t.stockcode).id : '/',
+            SourceVoucherDetailIdByMergedFlow: t.sbid,
+            materiel_code: t.partcode,
+            warehouse: t.stockcode,
+            materiel_id: t.materiel_id
+
+          }
+        )
+      })
+      // this.tableDataSummary = newData.flat()
+      this.tableDataSummary = newData
     },
 
-    // 鍏ュ簱鎻愪氦
-    async  submit() {
+    async submit() {
+      if (!this.form.stockcode) {
+        return this.$message.error('鍏ュ簱浠撳簱涓嶈兘涓虹┖锛�')
+      }
+      if (this.multipleSelection.length === 0) {
+        return this.$message.error('鏈�夋嫨浜у搧锛�')
+      }
+
+      this.$store.state.app.buttonIsDisabled = true
       await this.tabClick()
-      if (this.multipleSelection.find(i => !i.stockcode)) {
-        return this.$message('鏄庣粏閲岄潰鏈変骇鍝佹湭濉啓浠撳簱锛�')
-      }
-      this.multipleSelection.forEach(i => {
-        i.stockname = this.stockcodeArr.find(j => j.code === i.stockcode).name
-        i.id = this.stockcodeArr.find(j => j.code === i.stockcode).id
-      })
+      const openToken = await getTPlusToken() // 鑾峰彇TPlus   token
 
-      const head = {
-        rightcode: '2064',
-        hbillno: this.form.hbillno,
-        incbit: this.form.incbit,
-        wkshpcode: this.form.wkshopcode,
-        sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
-        sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
-        saleOrderId: this.tableDataDetail[0].saleOrderid,
-        saleOrderCode: this.tableDataDetail[0].saleOrderCode,
-        rdDirectionFlag: 1,
-        makerid: this.userArr.find(i => i.name === getCookie('username')).id,
-        maker: getCookie('username'),
-        accountingyear: new Date().getFullYear(),
-        VoucherYear: new Date().getFullYear(),
-        VoucherPeriod: new Date().getMonth() + 1,
-        ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
-        idbusitype: '03',
-        iddepartment: this.WorkShopArr.find(i => i.code === this.form.wkshopcode).id,
-        idrdstyle: 21,
-        idwarehouse: '',
-        voucherState: 181,
-        idvouchertype: 15,
-        voucherdate: handleDatetime(new Date().getTime()),
-        madedate: handleDatetime(new Date().getTime()),
-        createdtime: handleDatetime2(new Date().getTime()),
-        DataSource: '56133',
-        idsourcevouchertype: 69
+      // const openToken =
+
+      // 鏈夋簮鍗�
+      if (this.form.documentType === 'Y') {
+        const RDRecordDetails = []
+        this.tableDataSummary.forEach((i, index) => {
+          RDRecordDetails.push({
+            Code: index + 1, // 琛屽彿锛屼粠1寮�濮嬭嚜澧為暱
+            SourceVoucherId: this.tableDataDetail[0].mpoid, // 鏉ユ簮鍗曟嵁鐨勫崟鎹甀D
+            BaseQuantity: i.stinhouseqty, // 涓昏閲忓崟浣嶆暟閲�
+            SourceVoucherDetailId: i.sourceVoucherDetailId, // 鏉ユ簮鍗曟嵁鐨勫搴旀槑缁咺D
+            Inventory: {
+              Code: i.materiel_code // 瀛樿揣缂栫爜
+            },
+            IdSourceVoucherType: 69
+          })
+        })
+        const data = {
+          'dto': {
+            'Warehouse': {
+              'Code': this.form.stockcode// 浠撳簱缂栫爜
+            },
+            'Code': this.form.hbillno, // 鍗曟嵁缂栫爜
+            'IsModifiedCode': true,
+            'BusiType': {
+              'Code': '03'// 涓氬姟绫诲瀷缂栫爜
+            },
+            'Department': {
+              'Code': this.form.wkshopcode// 閮ㄩ棬缂栫爜
+            },
+            'VoucherDate': handleDatetime(new Date().getTime()), // 鍗曟嵁鏃ユ湡
+            'RdStyle': {
+              'Code': '21'// 鍑哄簱绫诲埆缂栫爜
+            },
+            'RDRecordDetails': RDRecordDetails,
+            // 'Clerk': {
+            //   'Code': this.userArr.find(i => i.name === getCookie('username')).code // 涓氬姟鍛榗ode
+            //   // 'Code': '001' // 涓氬姟鍛榗ode
+            //   // 'Name': getCookie('username')
+            // },
+            'ExternalCode': this.form.hbillno,
+            'VoucherType': {
+              'Code': 'ST1002'
+            }
+          }
+        }
+        const res = await axios.post(Vue.prototype.$chanjetBaseUrl + '/tplus/api/v2/ProductReceiveOpenApi/Create',
+          data, {
+            headers: {
+              'openToken': openToken,
+              'appKey': Vue.prototype.$AppKey,
+              'appSecret': Vue.prototype.$AppSecret,
+              'Content-Type': 'application/json'
+            }
+          }
+        )
+        if (res.data.code === 0) {
+          this.multipleSelection.forEach(i => {
+            i.stockname = this.stockcodeArr.find(j => j.code === i.stockcode).name
+            i.id = this.stockcodeArr.find(j => j.code === i.stockcode).id
+          })
+
+          const head = {
+            rightcode: '2064',
+            hbillno: this.form.hbillno,
+            incbit: this.form.incbit,
+            wkshpcode: this.form.wkshopcode,
+            sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+            sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            saleOrderId: this.tableDataDetail[0].saleOrderid,
+            saleOrderCode: this.tableDataDetail[0].saleOrderCode,
+            rdDirectionFlag: 1,
+            makerid: this.userArr.find(i => i.name === getCookie('username')).id,
+            maker: getCookie('username'),
+            accountingyear: new Date().getFullYear(),
+            VoucherYear: new Date().getFullYear(),
+            VoucherPeriod: new Date().getMonth() + 1,
+            ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            idbusitype: '03',
+            iddepartment: this.WorkShopArr.find(i => i.code === this.form.wkshopcode).id,
+            idrdstyle: 21,
+            idwarehouse: '',
+            voucherState: 181,
+            idvouchertype: 15,
+            voucherdate: handleDatetime(new Date().getTime()),
+            madedate: handleDatetime(new Date().getTime()),
+            createdtime: handleDatetime2(new Date().getTime()),
+            DataSource: '56133',
+            idsourcevouchertype: 69
+          }
+
+          const subsum = []
+          this.tableDataSummary.forEach((i, index) => {
+            subsum.push({
+              code: index.toString().padStart(4, '0'),
+              rownumber: index + 1,
+              arrivalQuantity: i.qty,
+              quantity: i.stinhouseqty,
+              compositionQuantity: i.stinhouseqty + i.unitname,
+              baseQuantity: i.stinhouseqty,
+              sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+              sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+              sourceVoucherDetailId: i.sourceVoucherDetailId,
+              idsourcevouchertype: 69,
+              saleOrderId: this.tableDataDetail[0].saleOrderid,
+              saleOrderCode: this.tableDataDetail[0].saleOrderCode,
+              saleOrderDetailId: i.saleOrderDetailId,
+              ManufactureOrderId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+              ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+              ManufactureOrderDetailId: i.ManufactureOrderDetailId,
+              idbusiTypeByMergedFlow: 3,
+              idinventory: i.materiel_id,
+              idbaseunit: i.unitid,
+              idunit: i.unitid,
+              idwarehouse: i.stck_id,
+              SourceVoucherIdByMergedFlow: this.tableDataDetail[0].mpoid,
+              SourceVoucherCodeByMergedFlow: this.tableDataDetail[0].m_po,
+              SourceVoucherDetailIdByMergedFlow: i.SourceVoucherDetailIdByMergedFlow,
+              idsourceVoucherTypeByMergedFlow: 69,
+              createdtime: handleDatetime2(new Date().getTime()),
+              DataSource: '56133',
+              materiel_code: i.materiel_code,
+              warehouse: i.warehouse
+            })
+          })
+
+          const data = {
+            head, sub: this.multipleSelection, subsum
+          }
+
+          const r1 = await ProductInHouseOrderSeave(data)
+          if (r1.code === '200') {
+            this.$message.success('鍏ュ簱鎴愬姛锛�')
+            this.$store.state.app.buttonIsDisabled = false
+            await this.getProductInHouseOrderCodeSearch()
+            await this.wkshopcodeChange(this.form.wkshopcode)
+            this.tableDataDetail = []
+            this.tableDataSummary = []
+            this.multipleSelection = []
+            this.form.stockcode = ''
+          }
+        } else {
+          this.$message.error('鍏ュ簱澶辫触锛�')
+          this.$store.state.app.buttonIsDisabled = false
+        }
       }
 
-      const subsum = []
-      this.tableDataSummary.forEach((i, index) => {
-        subsum.push({
-          code: index.toString().padStart(4, '0'),
-          rownumber: index + 1,
-          arrivalQuantity: i.qty,
-          quantity: i.stinhouseqty,
-          compositionQuantity: i.stinhouseqty + i.unitname,
-          baseQuantity: i.stinhouseqty,
+      // 鏃犳簮鍗�
+      if (this.form.documentType === 'N') {
+        const RDRecordDetails = []
+        this.tableDataSummary.forEach((i, index) => {
+          RDRecordDetails.push({
+            Code: index + 1, // 琛屽彿锛屼粠1寮�濮嬭嚜澧為暱
+            Inventory: {
+              Code: i.materiel_code // 瀛樿揣缂栫爜
+            },
+            BaseQuantity: i.stinhouseqty, // 涓昏閲忓崟浣嶆暟閲�
+            SNObject: {
+              SnAccountDetails: [
+                {
+                  SNCode: index.toString().padStart(4, '0')
+                }
+              ]
+            }
+          })
+        })
+        const data = {
+          'dto': {
+            'IsModifiedCode': true,
+            'ExternalCode': this.form.hbillno,
+            'Code': this.form.hbillno,
+            'VoucherType': {
+              'Code': 'ST1002'
+            },
+            'VoucherDate': handleDatetime(new Date().getTime()),
+            'BusiType': {
+              'Code': '03'
+            },
+            'Warehouse': {
+              'Code': this.form.stockcode
+            },
+            'Department': {
+              'Code': this.form.wkshopcode,
+              'Name': this.WorkShopArr.find(i => i.code === this.form.wkshopcode).name
+            },
+            'RDRecordDetails': RDRecordDetails
+          }
+        }
+        const res = await axios.post(Vue.prototype.$chanjetBaseUrl + '/tplus/api/v2/productReceive/Create',
+          data, {
+            headers: {
+              'openToken': openToken,
+              'appKey': Vue.prototype.$AppKey,
+              'appSecret': Vue.prototype.$AppSecret,
+              'Content-Type': 'application/json'
+            }
+          }
+        )
+
+        if (res.data === null) {
+          this.multipleSelection.forEach(i => {
+            i.stockname = this.stockcodeArr.find(j => j.code === i.stockcode).name
+            i.id = this.stockcodeArr.find(j => j.code === i.stockcode).id
+          })
+
+          const head = {
+            rightcode: '2064',
+            hbillno: this.form.hbillno,
+            incbit: this.form.incbit,
+            wkshpcode: this.form.wkshopcode,
+            sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : this.tableDataDetail[0].wo_id, // 涓嬪崍鎶婅繖涓弬鏁板姞涓�
+            sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            saleOrderId: this.tableDataDetail[0].saleOrderid,
+            saleOrderCode: this.tableDataDetail[0].saleOrderCode,
+            rdDirectionFlag: 1,
+            makerid: this.userArr.find(i => i.name === getCookie('username')).id,
+            maker: getCookie('username'),
+            accountingyear: new Date().getFullYear(),
+            VoucherYear: new Date().getFullYear(),
+            VoucherPeriod: new Date().getMonth() + 1,
+            ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            idbusitype: '03',
+            iddepartment: this.WorkShopArr.find(i => i.code === this.form.wkshopcode).id,
+            idrdstyle: 21,
+            idwarehouse: '',
+            voucherState: 181,
+            idvouchertype: 15,
+            voucherdate: handleDatetime(new Date().getTime()),
+            madedate: handleDatetime(new Date().getTime()),
+            createdtime: handleDatetime2(new Date().getTime()),
+            DataSource: '56133',
+            idsourcevouchertype: 69
+          }
+
+          const subsum = []
+          this.tableDataSummary.forEach((i, index) => {
+            subsum.push({
+              code: index.toString().padStart(4, '0'),
+              rownumber: index + 1,
+              arrivalQuantity: i.qty,
+              quantity: i.stinhouseqty,
+              compositionQuantity: i.stinhouseqty + i.unitname,
+              baseQuantity: i.stinhouseqty,
+              sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+              // sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+              sourceVoucherCode: '',
+              sourceVoucherDetailId: i.sourceVoucherDetailId,
+              idsourcevouchertype: 69,
+              saleOrderId: this.tableDataDetail[0].saleOrderid,
+              saleOrderCode: this.tableDataDetail[0].saleOrderCode,
+              saleOrderDetailId: i.saleOrderDetailId,
+              ManufactureOrderId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+              ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+              ManufactureOrderDetailId: i.ManufactureOrderDetailId,
+              idbusiTypeByMergedFlow: 3,
+              idinventory: i.materiel_id,
+              idbaseunit: i.unitid,
+              idunit: i.unitid,
+              idwarehouse: i.stck_id,
+              SourceVoucherIdByMergedFlow: this.tableDataDetail[0].mpoid,
+              SourceVoucherCodeByMergedFlow: this.tableDataDetail[0].m_po,
+              SourceVoucherDetailIdByMergedFlow: i.SourceVoucherDetailIdByMergedFlow,
+              idsourceVoucherTypeByMergedFlow: 69,
+              createdtime: handleDatetime2(new Date().getTime()),
+              DataSource: '56133',
+              materiel_code: i.materiel_code,
+              warehouse: i.warehouse
+            })
+          })
+
+          const data = {
+            head, sub: this.multipleSelection, subsum
+          }
+          console.log(data, 2)
+          const r1 = await ProductInHouseOrderSeave(data)
+          if (r1.code === '200') {
+            this.$message.success('鍏ュ簱鎴愬姛锛�')
+            this.$store.state.app.buttonIsDisabled = false
+            await this.getProductInHouseOrderCodeSearch()
+            await this.wkshopcodeChange(this.form.wkshopcode)
+            this.tableDataDetail = []
+            this.tableDataSummary = []
+            this.multipleSelection = []
+            this.form.stockcode = ''
+            this.$store.state.app.buttonIsDisabled = false
+          }
+        } else {
+          this.$message.error('鍏ュ簱澶辫触锛�')
+          this.$store.state.app.buttonIsDisabled = false
+        }
+      }
+    },
+    // 鍏ュ簱鎻愪氦
+    submit2() {
+      this.tabClick()
+
+      this.$confirm('鏄惁纭鎻愪氦?', '鎻愮ず', {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        type: 'warning'
+      }).then(() => {
+        if (this.multipleSelection.length === 0) {
+          return this.$message.error('鏈�夋嫨浜у搧锛�')
+        }
+        if (this.multipleSelection.find(i => !i.stockcode)) {
+          return this.$message.error('鏄庣粏閲岄潰鏈変骇鍝佹湭濉啓浠撳簱锛�')
+        }
+        this.multipleSelection.forEach(i => {
+          i.stockname = this.stockcodeArr.find(j => j.code === i.stockcode).name
+          i.id = this.stockcodeArr.find(j => j.code === i.stockcode).id
+        })
+
+        const head = {
+          rightcode: '2064',
+          hbillno: this.form.hbillno,
+          incbit: this.form.incbit,
+          wkshpcode: this.form.wkshopcode,
           sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
           sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
-          sourceVoucherDetailId: i.sourceVoucherDetailId,
-          idsourcevouchertype: 69,
           saleOrderId: this.tableDataDetail[0].saleOrderid,
           saleOrderCode: this.tableDataDetail[0].saleOrderCode,
-          saleOrderDetailId: i.saleOrderDetailId,
-          ManufactureOrderId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+          rdDirectionFlag: 1,
+          makerid: this.userArr.find(i => i.name === getCookie('username')).id,
+          maker: getCookie('username'),
+          accountingyear: new Date().getFullYear(),
+          VoucherYear: new Date().getFullYear(),
+          VoucherPeriod: new Date().getMonth() + 1,
           ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
-          ManufactureOrderDetailId: i.ManufactureOrderDetailId,
-          idbusiTypeByMergedFlow: 3,
-          idinventory: i.materiel_id,
-          idbaseunit: i.unitid,
-          idunit: i.unitid,
-          idwarehouse: i.stck_id,
-          SourceVoucherIdByMergedFlow: this.tableDataDetail[0].mpoid,
-          SourceVoucherCodeByMergedFlow: this.tableDataDetail[0].m_po,
-          SourceVoucherDetailIdByMergedFlow: i.SourceVoucherDetailIdByMergedFlow,
-          idsourceVoucherTypeByMergedFlow: 69,
+          idbusitype: '03',
+          iddepartment: this.WorkShopArr.find(i => i.code === this.form.wkshopcode).id,
+          idrdstyle: 21,
+          idwarehouse: '',
+          voucherState: 181,
+          idvouchertype: 15,
+          voucherdate: handleDatetime(new Date().getTime()),
+          madedate: handleDatetime(new Date().getTime()),
           createdtime: handleDatetime2(new Date().getTime()),
           DataSource: '56133',
-          materiel_code: i.materiel_code,
-          warehouse: i.warehouse
+          idsourcevouchertype: 69
+        }
+
+        const subsum = []
+        this.tableDataSummary.forEach((i, index) => {
+          subsum.push({
+            code: index.toString().padStart(4, '0'),
+            rownumber: index + 1,
+            arrivalQuantity: i.qty,
+            quantity: i.stinhouseqty,
+            compositionQuantity: i.stinhouseqty + i.unitname,
+            baseQuantity: i.stinhouseqty,
+            sourceVoucherId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+            sourceVoucherCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            sourceVoucherDetailId: i.sourceVoucherDetailId,
+            idsourcevouchertype: 69,
+            saleOrderId: this.tableDataDetail[0].saleOrderid,
+            saleOrderCode: this.tableDataDetail[0].saleOrderCode,
+            saleOrderDetailId: i.saleOrderDetailId,
+            ManufactureOrderId: this.form.documentType === 'Y' ? this.tableDataDetail[0].mpoid : '',
+            ManufactureOrderCode: this.form.documentType === 'Y' ? this.tableDataDetail[0].m_po : this.tableDataDetail[0].wo_code,
+            ManufactureOrderDetailId: i.ManufactureOrderDetailId,
+            idbusiTypeByMergedFlow: 3,
+            idinventory: i.materiel_id,
+            idbaseunit: i.unitid,
+            idunit: i.unitid,
+            idwarehouse: i.stck_id,
+            SourceVoucherIdByMergedFlow: this.tableDataDetail[0].mpoid,
+            SourceVoucherCodeByMergedFlow: this.tableDataDetail[0].m_po,
+            SourceVoucherDetailIdByMergedFlow: i.SourceVoucherDetailIdByMergedFlow,
+            idsourceVoucherTypeByMergedFlow: 69,
+            createdtime: handleDatetime2(new Date().getTime()),
+            DataSource: '56133',
+            materiel_code: i.materiel_code,
+            warehouse: i.warehouse
+          })
+        })
+
+        const data = {
+          head, sub: this.multipleSelection, subsum
+        }
+
+        ProductInHouseOrderSeave(data).then(res => {
+          if (res.code === '200') {
+            this.$message.success('鍏ュ簱鎻愪氦鎴愬姛锛�')
+            this.getProductInHouseOrderCodeSearch()
+            this.wkshopcodeChange(this.form.wkshopcode)
+            this.tableDataDetail = []
+            this.tableDataSummary = []
+            this.multipleSelection = []
+          }
         })
       })
-
-      const data = {
-        head, sub: this.multipleSelection, subsum
-      }
-
-      // console.log(JSON.stringify(data))
-
-      const res = await ProductInHouseOrderSeave(data)
-      if (res.code === '200') {
-        this.$message.success('鍏ュ簱鎻愪氦鎴愬姛锛�')
-      }
     },
     // 鑾峰彇椤甸潰楂樺害
     getHeight() {

--
Gitblit v1.9.3