yxj
2025-05-24 37b1d6f8bf9fa9b6f69b8455580def9a8d4cc9b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; 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">
    <!--引用layui样式文件-->
    <link rel="stylesheet" href="../../../layuiadmin/layui/css/layui.css" media="all">
    <link rel="stylesheet" href="../../../layuiadmin/style/admin.css" media="all">
    <!--引用layui js文件-->
    <script src="../../../layuiadmin/layui/layui.js"></script>
    <script src="../../../layuiadmin/Scripts/json2.js"></script>
    <script src="../../../layuiadmin/Scripts/jquery-1.4.1.js"></script>
    <script src="../../../layuiadmin/Scripts/webConfig.js"></script>
    <script src="../../../layuiadmin/PubCustom.js"></script>
    <style>
        .layui-col-xs8 {
            width: 55.666667%;
        }
    </style>
</head>
<body>
    <div class="layui-fluid" style="padding:0">
        <div class="layui-card" style="padding: 1px">
            <div class="layui-card-body" style="padding: 0px; height:800px;">
                <form class="layui-form" action="" lay-filter="component-form-group">
                    <div style="background-color:#0085E8;">
                        <span style="color: white;"><i class="layui-icon layui-icon-form"></i>车间物料库存查询</span>
                    </div>
                    <div class="layui-form-item" style="margin: 1% 2%;text-align: right;">
                        <button type="button" lay-submit="" lay-filter="cmdCancel" class="layui-btn layui-btn-radius layui-btn-danger" id="cmdCancel">退出</button>
                    </div>
                    <div class="layui-collapse">
                        <div class="layui-colla-item">
                            <div class="layui-form-item" style="padding: 20px; margin: 0px">
                                <div class="layui-row">
                                    <div class="layui-col-xs3">
                                        <label class="layui-form-label" style="width:60px;padding-left:0px;">物料代码</label>
                                    </div>
                                    <div class="layui-col-xs9">
                                        <input type="text" name="HMaterNumber" id="HMaterNumber" lay-verify="HMaterNumber" autocomplete="off" class="layui-input" style="border-radius: 5px;background-color:#efefef4d;" disabled>
                                    </div>
                                </div>
                                <div class="layui-row">
                                    <div class="layui-col-xs3">
                                        <label class="layui-form-label" style="width:60px;padding-left:0px;">物料名称</label>
                                    </div>
                                    <div class="layui-col-xs9">
                                        <input type="text" name="HMaterName" id="HMaterName" lay-verify="HMaterName" autocomplete="off" class="layui-input" style="border-radius: 5px;background-color:#efefef4d;" disabled>
                                    </div>
                                </div>
                                <div class="layui-row">
                                    <div class="layui-col-xs3">
                                        <label class="layui-form-label" style="width:60px;padding-left:0px;">规格型号</label>
                                    </div>
                                    <div class="layui-col-xs9">
                                        <input type="text" name="HMaterModel" id="HMaterModel" lay-verify="HMaterModel" autocomplete="off" class="layui-input" style="border-radius: 5px;background-color:#efefef4d;" disabled>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="layui-tab layui-col-xs12" lay-filter="tab-KF_ICInventoryByWorkShop_PDA">
                        <ul class="layui-tab-title" lay-filter="tab-all">
                            <li lay-id="1" style="padding:1px;">物料库存信息</li>
                        </ul>
                        <div class="layui-tab-content">
                            <!--物料库存信息-->
                            <div class="layui-tab-item layui-show">
                                <div class="layui-row">
                                    <div class="layui-col-xs12">
                                        <div class="layui-form-item" style="padding:0px;margin:0px"></div>
                                        <table class="layui-hide" id="wl-table" lay-filter="wl-table"></table>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </form>
            </div>
        </div>
    </div>
    <script>
        layui.config({
            base: '../../../layuiadmin/' //静态资源所在路径
        }).extend({
            index: 'lib/index' //主入口模块
        }).use(['index', 'form', 'laydate', 'table', 'element'], function () {
 
            //#region 公共变量
            var $ = layui.$
                , admin = layui.admin
                , layer = layui.layer
                , table = layui.table
                , form = layui.form
                , laydate = layui.laydate
                , element = layui.element;
            var HStockOrgID = sessionStorage["OrganizationID"]  //组织ID
            var listOption = [];
            var columns = "";
            var HModName = "KF_ICInventoryByWorkShop_PDA";
            var titleData = [];     //不需要显示的字段
            var params = get_UrlVars();
            var OperationType = params[params[0]] == null ? 1 : params[params[0]];  //1为直接模块打开  2为从其他模块跳转打开
            var HBillType = params[params[1]];                          //单据类型
            var HMaterID = params[params[2]];                           //物料ID
            var HAuxPropID = params[params[3]];                         //辅助属性ID
            var HBatchNo = decodeURIComponent(params[params[4]]);       //批号
            var HProcessExchangeInterID = params[params[5]];            //流转卡ID
            var HMaterNumber = params[params[6]];                       //物料代码
            var HMaterName = decodeURIComponent(params[params[7]]);     //物料名称
            var HMaterModel = decodeURIComponent(params[params[8]]);    //规格型号
 
            //#endregion
 
            ////判断是否登录 未登录则跳到登录页
            //if (sessionStorage.login != "login") {
            //    layer.confirm("登录失效,请重新登录!", {
            //        icon: 4, skin: 'layui-layer-lan', title: "温馨提示", closeBtn: 0, btn: ['重新登录']
            //    }, function () { window.location.href = "../../user/login.html"; });
            //}
 
 
            //#region 初始化界面
 
            set_ClearBill();
 
            function set_ClearBill() {
                set_InitGrid();     //初始化表格
 
                var data = [];
                listOption.cols = [[
                    { field: '小车或仓库', title: '小车或仓库', width: 200 }
                    , { field: '仓位', title: '仓位', width: 100 }
                    , { field: '数量', title: '数量', width: 100 }
                ]];
                listOption.data = data;
                table.render(listOption);
 
                if (OperationType == 2) {
                    $("#HMaterNumber").val(HMaterNumber);
                    $("#HMaterName").val(HMaterName);
                    $("#HMaterModel").val(HMaterModel);
                    //显示表体明细
                    DisBillEntryList();
                }
            }
 
            //初始化表格
            function set_InitGrid() {
                //条码信息
                listOption = {
                    elem: '#wl-table'
                    //, toolbar: '#toolbarDemo'
                    //, totalRow: true
                    , height: 'full-60'
                    , page: true
                    , cellMinWidth: 90
                    , limit: 50
                };
            }
 
            //#endregion
 
 
            //#region 功能控件
 
            //#region 查询
            function DisBillEntryList() {
                $.ajax({
                    type: "GET",
                    url: GetWEBURL() + '/WEBSController/GetICInventory_WorkShop_Json',
                    async: true,    //async用于控制(false)同步和(true)异步,默认的是true,即请求默认的是异步请求
                    data: { "HBillType": HBillType, "HMaterID": HMaterID, "HAuxPropID": HAuxPropID, "HBatchNo": HBatchNo, "HProcessExchangeInterID": HProcessExchangeInterID },
                    success: function (result) {
                        var data = [];
                        var col = [];
                        if (result.count == 1) { // 说明验证成功了,
                            //给空的数组赋值
                            for (var key in result.list) {
                                //动态获取列表所有列名
                                data.push({ "id": result.list[key].ColmCols, "name": result.list[key].ColmCols, "Type": result.list[key].ColmType });
                                //获取不需要显示的列(H开头的列不显示)
                                var patrn = new RegExp(/^h/i);
                                if (patrn.test(result.list[key].ColmCols)) {
                                    titleData[key] = result.list[key].ColmCols;
                                }
                            }
 
                            //在列表左边添加勾选框
                            //col.push({ type: 'radio' });
                            for (var i = 0; i < data.length; i++) {
                                if ($.inArray(data[i].name, titleData) > -1) {
                                    col.push({ field: data[i].id, title: data[i].name, align: 'center', hide: true }); //隐藏id列
                                }
                                else {
                                    switch (data[i].Type) {
                                        //int
                                        case 'DateTime':
                                            col.push({ field: data[i].id, title: data[i].name, align: 'center', sort: true, templet: "<div>{{d." + data[i].name + " ==null ?'':layui.util.toDateString(d." + data[i].name + ", 'yyyy-MM-dd')}}</div>", width: 200 });
                                            break;
                                        default:
 
                                            if (data[i].name == '数量') {
                                                col.push({ field: data[i].id, title: data[i].name, align: 'left', width: 80 });
                                            } else if (data[i].name == '仓位') {
                                                col.push({ field: data[i].id, title: data[i].name, align: 'left', width: 180 });
                                            } else {
                                                col.push({ field: data[i].id, title: data[i].name, align: 'left', width: 250 });
                                            }
                                    }
                                }
                            }
                            columns = col;
                            listOption.cols = [columns];
                            listOption.data = result.data;
                            //listOption.totalRow = true;
                            table.cache['wl-table'] = null;         //清空表格缓存数据
                            table.render(listOption);
                        }
                        else {
                            listOption.cols = [[
                                { field: '小车或仓库', title: '小车或仓库', width: 200 }
                                , { field: '仓位', title: '仓位', width: 100 }
                                , { field: '数量', title: '数量', width: 100 }
                            ]];
                            listOption.data = data;
                            //listOption.totalRow = true;
                            table.render(listOption);
                            //layer.msg(result.Message, { icon: 5, btn: ['确认'], time: 100000, offset: 'auto', skin: 'layui-layer-lan', title: "温馨提示" });
                        }
                    },
                    complete: function (XHR, TS) { XHR = null }//回收资源
                });
            }
 
            //#endregion
 
            //#region 退出
            form.on('submit(cmdCancel)', function () {
                //layer.confirm('您确定要退出吗?', { icon: 3, title: '提示' }, function (index) {
                    if (OperationType == 2) {
                        var index = parent.layer.getFrameIndex(window.name);    //先得到当前iframe层的索引
                        //parent.location.reload();                               //刷新父页面,注意一定要在关闭当前iframe层之前执行刷新
                        parent.layer.close(index);                              //再执行关闭
                    }
                    else {
                        parent.location.href = "../../../views/index_Mobile.html";
                    }
                //});
            })
 
            //#endregion
 
            //#endregion
 
        });
 
        //以上为layui模块
        //此处方法涉及到被外部页面parent.方法名调用的必须放在Layui方法外部
 
    </script>
 
</body>
</html>