From 8c8532db8fc7fa76b7fe4c254a36d67c6af24ace Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期三, 11 六月 2025 14:46:33 +0800
Subject: [PATCH] 添加物料编码字段并更新查询逻辑

---
 Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue |   45 ++++++++++++++++++++-------------------------
 1 files changed, 20 insertions(+), 25 deletions(-)

diff --git a/Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue b/Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue
index 9ebd137..c804118 100644
--- a/Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue
+++ b/Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue
@@ -6,8 +6,8 @@
  -->
 <template>
     <vol-box :lazy="true" v-model="model1" title="搴撳瓨鏄庣粏淇℃伅" :width="1820" :padding="5" :onModelClose="onModelClose">
-        <view-grid ref="grid" :columns="columns" :searchFormFields="searchFormFields"
-            :searchFormOptions="searchFormOptions" :table="table" :extend="extend">
+        <view-grid ref="grid" :columns="columns" :searchFormFields="searchFormFields" :editFormFields="editFormFields"
+            :editFormOptions="editFormOptions" :searchFormOptions="searchFormOptions" :table="table" :extend="extend">
         </view-grid>
         <template #footer>
             <div>
@@ -20,20 +20,20 @@
 <script>
 import extend from "@/extension/widesea_wms/stock/Dt_BillGroupStockDetail.js";
 import VolBox from '@/components/basic/VolBox.vue';
-import { ref, defineComponent } from "vue";
+import { ref, defineComponent, getCurrentInstance } from "vue";
 export default defineComponent({
     setup() {
         const table = ref({
-            key: 'groupDetailId',
+            key: 'id',
             footer: "Foots",
             cnName: '搴撳瓨鏄庣粏淇℃伅',
             name: 'stock/Dt_BillGroupStockDetail',
             url: "/StockInfoDetail/",
-            sortName: "GroupId"
+            sortName: "id"
         });
         const editFormFields = ref({
             "palletCode": "",
-            "materialNo": ""
+            "materialNo": "",
         });
         const editFormOptions = ref([
             [
@@ -43,7 +43,8 @@
         ]);
         const searchFormFields = ref({
             "palletCode": "",
-            "materialNo": ""
+            "materialNo": "",
+            "stockId": 0
         });
         const searchFormOptions = ref([
             [
@@ -51,25 +52,19 @@
                 { "title": "鐗╂枡缂栧彿", "field": "materialNo", type: "text" },
             ]
         ]);
-        const columns = ref([{ field: 'groupDetailId', title: '搴撳瓨鏄庣粏ID', type: 'int', width: 110, hidden: true, readonly: true, require: true, align: 'left' },
-        { field: 'groupId', title: '澶栧仴', type: 'int', width: 110, hidden: true, align: 'left', sort: true },
-        { field: 'palletCode', title: '鎵樼洏鍙�', type: 'string', width: 110, align: 'left' },
+        const columns = ref([{ field: 'id', title: '搴撳瓨鏄庣粏ID', type: 'int', width: 110, hidden: true, readonly: true, require: true, align: 'left' },
+        { field: 'stockId', title: '澶栧仴', type: 'int', width: 110, hidden: true, align: 'left', sort: true },
         { field: 'orderNo', title: '鍗曟嵁缂栧彿', type: 'string', width: 110, align: 'left' },
-        { field: 'orderDate', title: '鍗曟嵁鏃ユ湡', type: 'datetime', width: 150, align: 'left', sort: true },
         { field: 'batchNo', title: '鎵规鍙�', type: 'string', width: 110, align: 'left' },
-        { field: 'materialNo', title: '鐗╂枡缂栧彿', type: 'string', width: 110, align: 'left' },
-        { field: 'materialName', title: '鐗╂枡鍚嶇О', type: 'string', width: 110, align: 'left' },
-        { field: 'outBoxCode', title: '澶栫鐮�', type: 'string', width: 120, align: 'left' },
-        { field: 'inBoxCode', title: '鍐呯鐮�', type: 'string', width: 120, align: 'left' },
-        { field: 'emptyPalletCode', title: '绌烘墭鐩樼爜', type: 'string', width: 120, align: 'left' },
-        { field: 'palletUnit', title: '缁勭洏鍗曚綅', type: 'string', width: 110, align: 'left' },
-        { field: 'palletQuantity', title: '缁勭洏鏁伴噺', type: 'decimal', width: 110, align: 'left' },
-        { field: 'basicUnit', title: '鍗曚綅', type: 'string', width: 110, align: 'left' },
-        { field: 'basicQuantity', title: '璁¢噺', type: 'decimal', width: 110, align: 'left' },
-        { field: 'createID', title: '鍒涘缓ID', type: 'int', sort: true, width: 100, hidden: true, align: 'left' },
+        { field: 'materielCode', title: '鐗╂枡缂栧彿', type: 'string', width: 110, align: 'left' },
+        { field: 'materielName', title: '鐗╂枡鍚嶇О', type: 'string', width: 110, align: 'left' },
+        { field: 'serialNumber', title: '搴忓垪鍙�', type: 'string', width: 120, align: 'left' },
+        { field: 'stockQuantity', title: '搴撳瓨鏁伴噺', type: 'string', width: 120, align: 'left' },
+        { field: 'outboundQuantity', title: '鍑哄簱鏁伴噺', type: 'string', width: 120, align: 'left' },
+        { field: 'status', title: '搴撳瓨鐘舵��', type: 'string', width: 110, align: 'left' },
+        { field: 'remark', title: '澶囨敞', type: 'decimal', width: 110, align: 'left' },
         { field: 'creater', title: '鍒涘缓浜�', type: 'string', sort: true, width: 110, align: 'left' },
         { field: 'createDate', title: '鍒涘缓鏃堕棿', type: 'datetime', sort: true, width: 150, align: 'left', sort: true },
-        { field: 'modifyID', title: '淇敼浜篒D', type: 'int', sort: true, width: 100, hidden: true, align: 'left' },
         { field: 'modifier', title: '淇敼浜�', type: 'string', sort: true, width: 100, align: 'left' },
         { field: 'modifyDate', title: '淇敼鏃堕棿', type: 'datetime', sort: true, width: 150, align: 'left', sort: true }]);
         const detail = ref({
@@ -83,11 +78,11 @@
         const model1 = ref(false);
         const palletCode = ref("");
 
-        const openModel1 = (row)=>{
+        const openModel1 = (row) => {
             palletCode.value = row.palletCode;
+            searchFormFields.value.stockId = row.id;
             model1.value = true;
         }
-
 
         return {
             table,
@@ -105,7 +100,7 @@
         };
     },
     components: {
-        'vol-box': VolBox 
+        'vol-box': VolBox
     },
 });
 </script>

--
Gitblit v1.9.3