From 0b4036950ca61835a29ed0a13379a68af652fa59 Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期二, 26 十二月 2023 10:30:48 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/pla/productionInfo.js |  212 ++++++++++++++++++++++++++++++
 src/main/webapp/views/pla/productionInfo.html   |  106 +++++++++++++++
 src/main/java/com/zy/asrs/entity/Pla.java       |   98 ++++++++++++++
 3 files changed, 416 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/Pla.java b/src/main/java/com/zy/asrs/entity/Pla.java
new file mode 100644
index 0000000..a23acfc
--- /dev/null
+++ b/src/main/java/com/zy/asrs/entity/Pla.java
@@ -0,0 +1,98 @@
+package com.zy.asrs.entity;
+
+import com.baomidou.mybatisplus.annotations.TableId;
+import com.baomidou.mybatisplus.annotations.TableName;
+import com.baomidou.mybatisplus.enums.IdType;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+@Data
+@TableName("asr_pla_detl")
+public class Pla {
+    @ApiModelProperty(value= "ID")
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    //鍏ュ簱鏃堕棿
+    private Date io_time;
+
+    //鎵瑰彿
+    private String batch;
+
+    //鍖呰鍙�
+    private String packageNo;
+
+    //鐗屽彿
+    private String brand;
+
+    //閲嶉噺
+    private double weight;
+
+    //杞﹂棿
+    private String workshop;
+
+    //鐢熶骇绾�
+    private String line;
+
+    //鍖呰绫诲瀷
+    private String packageType;
+
+    //鎵樼洏绫诲瀷
+    private String zpalletType;
+
+    //缂犺啘
+    private String filmWrap;
+
+    //鐔旀寚
+    private double fingerMelting;
+
+    //鐔旂偣
+    private double fusingPoint;
+
+    //鎸ュ彂浠�1
+    private double vadf1;
+
+    //鎸ュ彂浠�2
+    private double vadf2;
+
+    //榛勫害
+    private double yellowness;
+
+    //涓嶉�忔槑搴�
+    private double opacity;
+
+    //姘村垎
+    private double water;
+
+    //L鍊�
+    private double l;
+
+    //a鍊�
+    private double a;
+
+    //b鍊�
+    private double b;
+
+    //濉厖
+    private double fillIn;
+
+    //璐ㄩ噺鐘舵��
+    private String massState;
+
+    //璐ㄩ噺闂
+    private String problem;
+
+    //浠撳簱
+    private String stash;
+
+    //搴撲綅
+    private String locNo;
+
+    //鍓╀綑閲嶉噺
+    private String weightAnfme;
+
+    //鐘舵��
+    private String status;
+}
diff --git a/src/main/webapp/static/js/pla/productionInfo.js b/src/main/webapp/static/js/pla/productionInfo.js
new file mode 100644
index 0000000..8143808
--- /dev/null
+++ b/src/main/webapp/static/js/pla/productionInfo.js
@@ -0,0 +1,212 @@
+var initCountVal = 0;
+var initAnfmeVal = "-";
+var matCodeData = [];
+var currLocNo;
+var matCodeLayerIdx;
+var data = [];
+function getCol() {
+    var cols = [
+        {field: 'id', title: 'id', align: 'center',hide:true}
+        ,{type: 'checkbox'}
+        ,{field: 'ioTime', title: '鍏ュ簱鏃堕棿', align: 'center'}
+        ,{field: 'batch', align: 'center',title: '鎵瑰彿', edit: true}
+        ,{field: 'packageNo', align: 'center',title: '鍖呭彿', edit: true}
+        ,{field: 'brand', align: 'center',title: '鐗屽彿', edit: true}
+        ,{field: 'weight', align: 'center',title: '閲嶉噺锛圞G锛�', edit: true}
+        ,{field: 'workshop', align: 'center',title: '鐢熶骇杞﹂棿', edit: true}
+        ,{field: 'line', align: 'center',title: '鐢熶骇绾�', edit: true}
+        ,{field: 'packageType', align: 'center',title: '鍖呰绫诲瀷', edit: true}
+        ,{field: 'zpalletType', align: 'center',title: '鎵樼洏绫诲瀷', edit: true}
+    ];
+    return cols;
+}
+
+layui.config({
+    base: baseUrl + "/static/layui/lay/modules/"
+}).use(['table','laydate', 'form', 'admin'], function() {
+    var table = layui.table;
+    var $ = layui.jquery;
+    var layer = layui.layer;
+    var layDate = layui.laydate;
+    var form = layui.form;
+    var admin = layui.admin;
+
+    tableIns = table.render({
+        elem: '#productionInfoTable',
+        data: [],
+        even: true,
+        limit: 500,
+        cellMinWidth: 50,
+        toolbar: '#toolbar',
+        cols: [getCol()],
+        done: function (res, curr, count) {
+            limit();
+        }
+    });
+
+    // 椤甸潰淇敼
+    table.on('edit(chooseData)', function (obj) {
+        let index = obj.tr.attr("data-index");
+        let data = matCodeData[index];
+        let modify = true;
+        if (obj.field === 'count'){
+            let vle = Number(obj.value);
+            if (isNaN(vle)) {
+                layer.msg("璇疯緭鍏ユ暟瀛�", {icon: 2});
+                modify = false;
+            } else {
+                if (vle <= 0) {
+                    layer.msg("鏁伴噺蹇呴』澶т簬闆�", {icon: 2});
+                    modify = false;
+                }
+            }
+        }
+        if (modify) {
+            data[obj.field] = obj.value;
+        }
+        tableIns.reload({data: matCodeData});
+    });
+
+    // 鐩戝惉澶村伐鍏锋爮浜嬩欢
+    table.on('toolbar(chooseData)', function (obj) {
+        switch(obj.event) {
+            case 'adjust':
+                if (isEmpty(currLocNo)) {
+                    layer.msg("璇峰厛妫�绱㈠簱浣�", {icon: 2})
+                    inputTip($("#searchLocNo"));
+                    return;
+                }
+                if (matCodeData.length === 0) {
+                    layer.msg("璇峰厛娣诲姞鏄庣粏", {icon: 2});
+                    return;
+                }
+                for (var i=0;i<matCodeData.length;i++){
+                    if (isNaN(matCodeData[i].count)) {
+                        layer.msg("璇疯緭鍏ユ暟瀛�", {icon: 2});
+                        return;
+                    }
+                    if (matCodeData[i].count < 0){
+                        layer.msg("鏁伴噺涓嶈兘灏忎簬闆�", {icon: 2});
+                        return;
+                    }
+                }
+                layer.confirm('纭畾璋冩暣'+currLocNo+'搴撲綅鐨勬槑缁嗗悧锛�', {shadeClose: true}, function(){
+                    $.ajax({
+                        url: baseUrl+"/manLocDetl/adjust/start",
+                        headers: {'token': localStorage.getItem('token')},
+                        data: JSON.stringify({
+                            locNo: currLocNo,
+                            list: matCodeData
+                        }),
+                        contentType:'application/json;charset=UTF-8',
+                        method: 'POST',
+                        async: false,
+                        success: function (res) {
+                            if (res.code === 200){
+                                layer.msg(currLocNo + res.msg, {icon: 1});
+                                init(currLocNo)
+                            } else if (res.code === 403){
+                                top.location.href = baseUrl+"/";
+                            }else {
+                                layer.msg(res.msg, {icon: 2})
+                            }
+                        }
+                    })
+                });
+                break;
+        }
+    });
+
+    // 鐩戝惉琛屽伐鍏蜂簨浠�
+    table.on('tool(chooseData)', function(obj){
+        var data = obj.data;
+        switch (obj.event) {
+            case 'remove':
+                let index = obj.tr.attr("data-index");
+                matCodeData.splice(index, 1);
+                tableIns.reload({data: matCodeData});
+                break;
+        }
+    });
+
+    // 妫�绱簨浠�
+    form.on('submit(search)', function (data) {
+        let loc_no = data.field.loc_no;
+        if (loc_no === "") {
+            inputTip($("#searchLocNo"));
+            layer.msg("璇疯緭鍏ュ簱浣嶅彿");
+            return;
+        }
+        init(loc_no);
+    });
+
+    // 閲嶇疆浜嬩欢
+    form.on('submit(reset)', function (data) {
+        reset();
+    });
+
+    function init(locNo) {
+        http.post(baseUrl + "/manLocDetl/list", {loc_no: locNo,limit: 1000}, function (res) {
+            matCodeData = [];
+            matCodeData = res.data.records;
+            for (var i = 0; i<matCodeData.length; i++) {
+                matCodeData[i]["count"] = matCodeData[i]["anfme"];
+            }
+            locTips(true, locNo);
+            tableReload();
+        })
+    }
+
+    function reset() {
+        clearFormVal($('#search-box'));
+        matCodeData = [];
+        tableReload();
+        locTips(false);
+    }
+
+    // 閲嶈浇琛ㄦ牸
+    function tableReload() {
+        tableIns.reload({data: matCodeData});
+    }
+
+    // 搴撲綅鎻愮ず妗�
+    function locTips(retrieve, locNo) {
+        if (retrieve) {
+            http.post(baseUrl+"/node/select/"+locNo+"/auth", null, function (res) {
+                console.log(res);
+                let data = res.data;
+                if (data != null) {
+                    $(".retrieve").show();
+                    // $("#locMsg").html(locNo + "&nbsp;,搴撲綅鐘舵�侊細" + data.locSts$);
+                    $("#locMsg").html(locNo + "&nbsp;");
+                    $('.not-retrieve').hide();
+                    currLocNo = locNo;
+                } else {
+                    layer.msg("璇疯緭鍏ユ湁鏁堝簱浣嶅彿", {icon: 2});
+                    $('.not-retrieve').show();
+                    $("#locMsg").html("");
+                    $(".retrieve").hide();
+                    currLocNo = null;
+                    inputTip($("#searchLocNo"));
+                }
+            })
+        } else {
+            $('.not-retrieve').show();
+            $("#locMsg").html("");
+            $(".retrieve").hide();
+            currLocNo = null;
+        }
+    }
+
+    $(document).on('click','#add', function () {
+        var strTime = "20"
+        var now = new Date(year,month,date,hrs,min,sec);
+        var newRow = {ioTime : now};
+        data.push(newRow);
+        table.reload('productionInfoTable',{
+            data: data
+        })
+    })
+
+})
+
diff --git a/src/main/webapp/views/pla/productionInfo.html b/src/main/webapp/views/pla/productionInfo.html
new file mode 100644
index 0000000..e8157c2
--- /dev/null
+++ b/src/main/webapp/views/pla/productionInfo.html
@@ -0,0 +1,106 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title></title>
+    <meta name="renderer" content="webkit">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+    <link rel="stylesheet" href="../../static/layui/css/layui.css" media="all">
+    <link rel="stylesheet" href="../../static/css/admin.css?v=318" media="all">
+    <link rel="stylesheet" href="../../static/css/cool.css" media="all">
+    <link rel="stylesheet" href="../../static/css/common.css" media="all">
+    <style>
+        html {
+            height: 100%;
+            padding: 10px;
+            background-color: #f1f1f1;
+            box-sizing: border-box;
+        }
+        body {
+            background-color: #fff;
+            border-radius: 5px;
+            box-shadow: 0 0 3px rgba(0,0,0,.3);
+        }
+
+        /* search */
+        .layui-card-header {
+            border-bottom: none;
+        }
+        #search-box {
+            padding: 30px 0 10px 0;
+        }
+        #search-box .layui-inline:first-child {
+            margin-left: 30px;
+        }
+        #search-box .layui-inline {
+            margin-right: 5px;
+        }
+
+        #data-search-btn {
+            margin-left: 10px;
+            display: inline-block;
+        }
+        #data-search-btn.layui-btn-container .layui-btn {
+            margin-right: 20px;
+        }
+
+        /* add */
+        .function-area {
+            padding: 15px 0 20px 40px;
+        }
+        .function-btn {
+            font-size: 16px;
+            padding: 1px 1px 1px 1px;
+            width: 120px;
+            height: 40px;
+            border-color: #2b425b;
+            border-radius: 4px;
+            border-width: 1px;
+            background: none;
+            border-style: solid;
+            transition: 0.4s;
+            cursor: pointer;
+        }
+        .function-btn:hover {
+            background-color: #2b425b;
+            color: #fff;
+        }
+
+        #mat-query {
+            /*display: none;*/
+        }
+        #btn-adjust {
+            /*display: none;*/
+        }
+    </style>
+</head>
+<body style="padding-bottom: 30px">
+
+<hr>
+
+<!-- 鍔熻兘鍖� -->
+<div class="function-area">
+    <button id="add" class="function-btn">鏂板</button>
+    <button id="delete" class="function-btn">鍒犻櫎</button>
+    <button id="submit" style="alignment: right" class="function-btn">鎻愪氦</button>
+</div>
+
+<!-- 琛� -->
+<script type="text/html" id="operate">
+    <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="remove">绉婚櫎</a>
+</script>
+
+<!-- 琛ㄦ牸 -->
+<table class="layui-table" id="productionInfoTable" lay-filter="productionInfoTable"></table>
+
+<script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script>
+<script type="text/javascript" src="../../static/layui/layui.js" charset="utf-8"></script>
+<script type="text/javascript" src="../../static/js/common.js" charset="utf-8"></script>
+<script type="text/javascript" src="../../static/js/cool.js" charset="utf-8"></script>
+<script type="text/javascript" src="../../static/js/handlebars/handlebars-v4.5.3.js"></script>
+<script type="text/javascript" src="../../static/js/pla/productionInfo.js" charset="utf-8"></script>
+
+</body>
+</html>
+

--
Gitblit v1.9.1