From 05c2e8aadb518a6323ff9fe23051fdbd56097221 Mon Sep 17 00:00:00 2001
From: huanghongfeng <huanghongfeng@hnkhzn.com>
Date: 星期日, 08 十二月 2024 19:46:43 +0800
Subject: [PATCH] 文本日志查看

---
 代码管理/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue |   79 ++++++++++++++++++++++++++++++++-------
 1 files changed, 64 insertions(+), 15 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue"
index f36c616..05cbea5 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue"
@@ -39,7 +39,13 @@
       const editFormOptions = ref([
         [
         { title: "鎵樼洏缂栧彿", field: "palletCode" },
-          { title: "鐗╂枡绫诲瀷", field: "materialType" },
+        {
+          title: "鐗╂枡绫诲瀷",
+          field: "materialType",
+          type: "select",
+          dataKey: "InventoryMaterialType",
+          data: [],
+        },
           { title: "璐т綅缂栧彿", field: "locationCode" },
           {
           title: "搴撳瓨鐘舵��",
@@ -50,7 +56,17 @@
         },
         ],
         [
-        { title: "閲嶉噺(鏁伴噺)", field: "materialweight" },
+        { title: "閲嶉噺", field: "materialweight" },
+        {
+          title: "鐗╂枡鐘舵��",
+          field: "wlstatus",
+          type: "select",
+          dataKey: "InventoryMaterialStatus",
+          data: []
+        },
+        {
+          title: "澶囨敞", field: "Remark"
+        }
         ],
       ]);
       const searchFormFields = ref({
@@ -60,15 +76,18 @@
       });
       const searchFormOptions = ref([
         [
-          { title: "鎵樼洏缂栧彿", field: "palletCode" },
+          { title: "鎵樼洏缂栧彿",
+            field: "palletCode",
+            type: "like",
+        },
           {
-          title: "搴撳瓨鐘舵��",
+          title: "鐗╂枡绫诲瀷",
           field: "materialType",
-          type: "selectList",
-          dataKey: "inventoryMaterialType",
+          type: "select",
+          dataKey: "InventoryMaterialType",
           data: [],
         },
-          { title: "璐т綅缂栧彿", field: "locationCode" },
+          { title: "璐т綅缂栧彿", field: "locationCode",type: "like", },
           {
           title: "搴撳瓨鐘舵��",
           field: "stockStatus",
@@ -77,6 +96,19 @@
           data: [],
         },
         ],
+        [
+        {
+          title: "鐗╂枡鐘舵��",
+          field: "wlstatus",
+          type: "selectList",
+          dataKey: "InventoryMaterialStatus",
+          data: [],
+        },
+        { title: "搴撳瓨缂栧彿",
+            field: "id",
+            type: "like",
+        },
+        ]
       ]);
       const columns = ref([
         {
@@ -90,11 +122,20 @@
           align: "left",
         },
         {
+          field: "id",
+          title: "搴撳瓨缂栧彿",
+          type: "string",
+          width: 90,
+          align: "left",
+          DisplayType:"link"
+        },
+        {
           field: "palletCode",
           title: "鎵樼洏缂栧彿",
           type: "string",
           width: 90,
           align: "left",
+          DisplayType:"link"
         },
         {
           field: "materialType",
@@ -102,7 +143,7 @@
           type: "string",
           width: 150,
           align: "left",
-          bind: { key: "inventoryMaterialType", data: [] },
+          bind: { key: "InventoryMaterialType", data: [] },
         },
         {
           field: "locationCode",
@@ -111,6 +152,14 @@
           width: 150,
           align: "left",
           
+        },
+        {
+          field: "wlstatus",
+          title: "鐗╂枡鐘舵��",
+          type: "string",
+          width: 150,
+          align: "left",
+          bind: { key: "InventoryMaterialStatus", data: [] },
         },
         {
           field: "isFull",
@@ -133,6 +182,12 @@
           title: "閲嶉噺(鏁伴噺)",
           type: "string",
           width: 150,
+          align: "left",
+        },{
+          field: "remark",
+          title: "澶囨敞",
+          type: "string",
+          width: 100,
           align: "left",
         },
         {
@@ -163,13 +218,7 @@
           width: 160,
           align: "left",
         },
-        {
-          field: "remark",
-          title: "澶囨敞",
-          type: "string",
-          width: 100,
-          align: "left",
-        },
+        
       ]);
       const detail = ref({
         cnName: "#detailCnName",

--
Gitblit v1.9.3