From 927ce822017ff8459be84b742d519970ca614096 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期五, 24 十月 2025 17:18:56 +0800
Subject: [PATCH] 1

---
 项目代码/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/Other/OtherStockSelect.vue |   31 ++++++++++++++-----------------
 1 files changed, 14 insertions(+), 17 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/extend/StockSelect.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/Other/OtherStockSelect.vue"
similarity index 90%
copy from "\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/extend/StockSelect.vue"
copy to "\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/Other/OtherStockSelect.vue"
index 48e50fe..c671a66 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/extend/StockSelect.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/Other/OtherStockSelect.vue"
@@ -23,17 +23,11 @@
       </div>
       <div style="margin-top:10px;width:400px">
         <el-form ref="form" :model="form" label-width="90px">
-          <el-form-item label="缁堢偣鍦板潃">
-            <el-input type="text" v-model="this.form.TargetAddress"></el-input>
-          </el-form-item>
           <el-form-item label="鍑哄簱鍖哄煙" prop="areaId">
             <el-select v-model="form.areaId" placeholder="璇烽�夋嫨鍑哄簱鍖哄煙">
-              <el-option label="鍫嗗灈鏈哄尯鍩�" value="1" />
               <el-option label="涓�妤糀GV鍑哄簱缂撳瓨鍖�" value="2" />
               <el-option label="涓�妤糀GV绔嬪簱缂撳瓨鍖�" value="3" />
               <el-option label="涓�妤糀GV鍏ュ簱缂撳瓨鍖�" value="4" />
-              <el-option label="浜屾ゼB4-G4缂撳瓨鍖�" value="5" />
-              <el-option label="浜屾ゼB5-G5缂撳瓨鍖�" value="6" />
             </el-select>
           </el-form-item>
         </el-form>
@@ -70,7 +64,7 @@
     return {
       form: {
         TargetAddress: "",
-        areaId: "",
+        areaId: "2",
       },
       row: null,
       showDetialBox: false,
@@ -135,16 +129,14 @@
       }
       this.ids.push(this.row.id);
       var param = {
-        // "orderId": this.row.id,
         "orderIds":this.ids,
         "stockViews": this.selection,
-        "TargetAddress": this.form.TargetAddress,
         "AreaId": this.form.areaId,
       }
       console.log(param);
       this.http
         .post(
-          "api/StockInfo/GenerateOutboundTask",
+          "api/OtherOutboundOrder/GenerateOtherOutboundTask",
           param,
           "鏁版嵁澶勭悊涓�"
         )
@@ -158,14 +150,19 @@
         });
     },
     getData() {
+      var param = {
+        "materielCode":this.row.materielCode,
+        "materielName": this.row.materielName,
+        "demandClassification": this.row.demandClassification,
+      }
       this.http
-        .post(
-          "api/StockInfo/GetStockSelectViews?materielCode=" +
-          this.row.materielCode,
-          null,
-          "鏌ヨ涓�"
-        )
-        .then((x) => {
+        // .post(
+        //   "api/StockInfo/GetStockSelectViews?materielCode=" +
+        //   this.row.materielCode,
+        //   null,
+        //   "鏌ヨ涓�"
+        // )
+        .post("api/StockInfo/GetStockSelectViews",param,"鏌ヨ涓�").then((x) => {
           this.tableData = x;
         });
     },

--
Gitblit v1.9.3