From e235d483194ab95bf62d1cfd343a172ff12781e8 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期六, 13 四月 2024 14:58:24 +0800
Subject: [PATCH] 聚乳酸库存明细 1.批号与包号排序需同步,增加水分,挥发段,分解段搜索,按照最大最小范围,包装类型跟托盘类型增加删选功能。 2.已经出库的物料,在明细表里面隐藏掉,但是数据保留。 3.增加二个跟聚乳酸一样的明细表,分改性树脂,纯树脂库存明细表,所有功能跟总的聚乳酸库存明细表一样 4.明细表整体框架调整一下,相对压缩一下,搜索功能框看看能否弄成二行 5.表里面的包装类型与托盘类型这些不主要的信息放到指标后面 6.关于分包再处理,举例原有系统里面销售选定的10包物料,再二次重新弄后,车间打印新标签,使用新的包号,在明细表里面体现原有所有指标信息及批号,包号,牌号跟新的关联 7.出库时候时间可选历史,不要就只能出现4天 8.提取库存里面需要有最大包号跟最小包号选择

---
 src/main/webapp/views/home/console.html |   24 ++++++++++++++++--------
 1 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/src/main/webapp/views/home/console.html b/src/main/webapp/views/home/console.html
index cd91d26..83dfd64 100644
--- a/src/main/webapp/views/home/console.html
+++ b/src/main/webapp/views/home/console.html
@@ -31,11 +31,15 @@
             display: inline-block;
             width: 49%;
         }
+        .chart-elem div {
+            padding-top: 15px;
+            padding-bottom: 5px;
+        }
         .chart-elem:first-child {
             padding: 0 50px;
         }
         .chart-elem:last-child {
-            padding-left: 20px;
+            padding: 0 50px;
             border-left: 1px solid rgba(0,0,0,.1);
         }
         /*琛ㄦ牸宸ュ叿鏍�*/
@@ -98,7 +102,7 @@
 <!--琛ㄦ牸鏁版嵁-->
 <div class="home-elem loc-retention">
     <div class="layui-form">
-        <div id="form-header">搴撳瓨婊炵暀鏃堕棿缁熻琛�</div>
+        <div id="form-header">搴撻緞缁熻琛�</div>
         <table class="layui-hide" id="stayTime" lay-filter="stayTime"></table>
     </div>
 </div>
@@ -127,7 +131,7 @@
                     text: '搴撲綅浣跨敤姣斾緥',
                     margin:1,
                     style: {fontSize: '18px',color: '#777',fontWeight: 'bold'},
-                    y: 20
+                    y: 5
                 };
                 var tooltip = {
                     pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
@@ -185,7 +189,7 @@
                     text: '鏃ュ叆鍑哄簱鏁伴噺',
                     margin: 1,
                     style: {fontSize: '18px',color: '#777',fontWeight: 'bold'},
-                    y: 20
+                    y: 5
                 };
                 var xAxis = {
                     categories: [getDate(-11), getDate(-10), getDate(-9), getDate(-8), getDate(-7), getDate(-6),
@@ -231,11 +235,15 @@
     var pageCurr;
     function getCol() {
         var cols = [
-            {field: 'appe_time', title: '鍏ュ簱鏃堕棿', align: 'center', width: 200}
-            ,{field: 'stay_time', align: 'center',title: '婊炵暀澶╂暟'}
+            {field: 'createTime$', title: '鍏ュ簱鏃堕棿', align: 'center', width: 200}
+            ,{field: 'stay_time', align: 'center',title: '搴撻緞(澶�)'}
             ,{field: 'loc_no', align: 'center',title: '搴撲綅鍙�'}
+            ,{field: 'matnr', align: 'center',title: '鍟嗗搧缂栧彿'}
+            ,{field: 'brand', align: 'center',title: '鐗屽彿'}
+            ,{field: 'batch', align: 'center',title: '鎵瑰彿'}
+            ,{field: 'package_no', align: 'center',title: '鍖呭彿'}
+            ,{field: 'weight_anfme', align: 'center',title: '鍓╀綑閲嶉噺'}
         ];
-        cols.push.apply(cols, detlCols);
         return cols;
     }
     layui.use(['table','laydate', 'form'], function() {
@@ -326,4 +334,4 @@
         return fmt;
     }
 </script>
-</html>
\ No newline at end of file
+</html>

--
Gitblit v1.9.1