From c560649e37ab5a5bc29c47a3fa7309dc912b48cb Mon Sep 17 00:00:00 2001
From: 李天宇 <876263681@qq.com>
Date: 星期五, 25 十月 2024 09:33:08 +0800
Subject: [PATCH] #update 修复wms库存明细统计bug,实现客户导出需求

---
 src/main/webapp/static/js/locDetl/locDetl.js |   52 ++++++++++++----------------------------------------
 1 files changed, 12 insertions(+), 40 deletions(-)

diff --git a/src/main/webapp/static/js/locDetl/locDetl.js b/src/main/webapp/static/js/locDetl/locDetl.js
index 7c9a734..30832b2 100644
--- a/src/main/webapp/static/js/locDetl/locDetl.js
+++ b/src/main/webapp/static/js/locDetl/locDetl.js
@@ -2,18 +2,17 @@
 function getCol() {
     var cols = [
         {field: 'locNo$', align: 'center',title: '搴撲綅鍙�'},
-        {field: 'matnr', align: 'center',title: '鍟嗗搧缂栧彿', sort:true}
-        ,{field: 'maktx', align: 'center',title: '鍟嗗搧鍚嶇О', sort:true}
-        ,{field: 'orderNo', align: 'center',title: '鍗曟嵁缂栧彿', hide: false}
-        ,{field: 'batch', align: 'center',title: '搴忓垪鐮�', width: 300, sort:true}
-        ,{field: 'anfme', align: 'center',title: '鏁伴噺'}
+        {field: 'matnr', align: 'center',title: '鍝佸彿', sort:true}
+        ,{field: 'maktx', align: 'center',title: '鍝佸悕', sort:true}
+        ,{field: 'orderNo', align: 'center',title: '鍗曟嵁缂栧彿', hide: true}
+        ,{field: 'batch', align: 'center',title: '鎵瑰彿', hide: true}
+        ,{field: 'anfme', align: 'center',title: '鏁伴噺', sort:true}
         ,{field: 'zpallet', align: 'center',title: '鎵樼洏鏉$爜'}
-
-        ,{field: 'specs', align: 'center',title: '閰嶇疆'}
+        ,{field: 'specs', align: 'center',title: '瑙勬牸'}
         ,{field: 'model', align: 'center',title: '浠g爜', hide: true}
         ,{field: 'color', align: 'center',title: '棰滆壊', hide: true}
-        ,{field: 'brand', align: 'center',title: '鍝佺墝', hide: true}
-        ,{field: 'unit', align: 'center',title: '鍗曚綅', hide: true}
+        ,{field: 'brand', align: 'center',title: '绫诲瀷', hide: false}
+        ,{field: 'unit', align: 'center',title: '鍗曚綅', hide: false}
         ,{field: 'price', align: 'center',title: '鍗曚环', hide: true}
         ,{field: 'sku', align: 'center',title: 'sku', hide: true}
         ,{field: 'units', align: 'center',title: '鍗曚綅閲�', hide: true}
@@ -27,7 +26,7 @@
         ,{field: 'length', align: 'center',title: '鍗曠姣涢噸', hide: true}
         ,{field: 'volume', align: 'center',title: '鍗曠浣撶Н', hide: true}
         ,{field: 'threeCode', align: 'center',title: '绠卞瓙灏哄', hide: true}
-        ,{field: 'supp', align: 'center',title: '渚涘簲鍟�', hide: true}
+        ,{field: 'supp', align: 'center',title: '渚涘簲鍟�', hide: false}
         ,{field: 'suppCode', align: 'center',title: '渚涘簲鍟嗙紪鐮�', hide: true}
         ,{field: 'beBatch$', align: 'center',title: '鏄惁鎵规', hide: true}
         ,{field: 'deadTime', align: 'center',title: '淇濊川鏈�', hide: true}
@@ -40,7 +39,7 @@
 
     // cols.push.apply(cols, detlCols);
     cols.push({field: 'modiUser$', align: 'center',title: '淇敼浜哄憳',hide: true}
-        ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿'}
+        ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿', sort:true}
     )
     return cols;
 }
@@ -58,11 +57,8 @@
         headers: {token: localStorage.getItem('token')},
         url: baseUrl+'/locDetl/list/auth',
         page: true,
-        limit: 20,
-        where:{
-          unreason: false
-        },
-        limits: [20, 30, 50, 100, 200, 500],
+        limit: 16,
+        limits: [16, 30, 50, 100, 200, 500],
         even: true,
         toolbar: '#toolbar',
         cellMinWidth: 50,
@@ -458,29 +454,6 @@
         tableReload(false);
     });
 
-    //鏌ョ湅寮傚父鏁版嵁
-    form.on('submit(unreason)', function (data) {
-        pageCurr = 1;
-
-        tableIns.reload({
-            where: {
-                unreason: true
-            },
-            page: {
-                curr: pageCurr
-            },
-            done: function (res, curr, count) {
-
-                if (res.code === 403) {
-                    top.location.href = baseUrl+"/";
-                }
-                pageCurr=curr;
-
-                limit(child);
-            }
-        });
-    });
-
     // 鏃堕棿閫夋嫨鍣�
     layDate.render({
         elem: '#modiTime\\$',
@@ -501,7 +474,6 @@
 
 function tableReload(child) {
     var searchData = {
-        unreason: false
     };
     $.each($('#search-box [name]').serializeArray(), function() {
         searchData[this.name] = this.value;

--
Gitblit v1.9.1