Blame view

src/main/resources/templates/inventory/inventoryMaterialSummary/inventoryMaterialSummary.html 11.1 KB
xqs authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
    <div class="col-sm-12">
        <div class="col-sm-12 select-info">
            <form id="inventoryMaterialSummary-form">
            <div class="select-list">
                <ul>
                    <li>
                        仓库:<input  id="warehouseCode" type="text" name="warehouseCode" th:value="${warehouseCode}" readonly="readonly" />
                    </li>
                    <li>
                        物料编码:<input id="materialCode" type="text" name="materialCode" />
                    </li>
                    <li>
                        物料名称:<input id="materialName" type="text" name="materialName" />
                    </li>
xqs authored
22
23
24
25
26
27
28
29
                    <li class="time">
                        <label>创建时间: </label>
                        <input type="text" class="time-input" id="startTime" placeholder="开始时间"
                               name="createdBegin"/>
                        <span>-</span>
                        <input type="text" class="time-input" id="endTime" placeholder="结束时间"
                               name="createdEnd"/>
                    </li>
xqs authored
30
31
32
33
34
35
36
37
                    <li>
                    <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
                    </li>
                </ul>
            </div>
            </form>
        </div>
        <div class="btn-group hidden-xs" id="toolbar" role="group">
xqs authored
38
            <!--<a class="btn btn-outline btn-danger btn-rounded" onclick="batRemove()">
xqs authored
39
                <i class="fa fa-trash-o"></i> 删除
xqs authored
40
            </a>-->
xqs authored
41
42
43
44
45
46
47
48
49
50
51
52
        </div>
        <div class="col-sm-12 select-info">
        <table id="bootstrap-table" data-mobile-responsive="true" class="table table-bordered table-hover"></table>
        </div>
    </div>
</div>
</div>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
    var prefix = ctx + "inventory/inventoryMaterialSummary";

        $(function () {
xqs authored
53
                let options = {
xqs authored
54
                    url: prefix + "/list",
xqs authored
55
56
                    contentType: "application/x-www-form-urlencoded",   // 编码类型
                    method: 'post',                                     // 请求方式(*)
xqs authored
57
                    modalName: "库存汇总",
xqs authored
58
                    sortStable: true,
xqs authored
59
60
61
62
63
64
                    sortName: "materialCode",
                    sortOrder: "asc",
                    search: false,
                    showSearch: false,
                    showRefresh: true,
                    refresh:true,
xqs authored
65
66
67
                    showToggle: false,
                    showColumns: false,
                    showExport: true,                                  //是否添加导出按钮
xqs authored
68
                    detailView: true,
xqs authored
69
70
71
                    pagination: true,
                    sidePagination: "client",                          //前端分页
                    queryParams : queryParams,
xqs authored
72
73
74
                    onExpandRow : function(index, row, $detail) {
                        detailChildTable(index, row, $detail);
                    },
xqs authored
75
76
77
                    responseHandler: function (res) {
                        return res;
                    },
xqs authored
78
79
80
81
82
83
84
85
86
87
88
89
90
91
                    columns: [
                        {
                            radio: true
                        },
                        {
                            field: 'warehouseCode',
                            title: '仓库 ',
                            visible: true
                        },
                        /*{
                            field: 'companyCode',
                            title: '货主编码'
                        },*/
                        {
xqs authored
92
93
                            field: 'qty',
                            title: '库存总数'
xqs authored
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
                        },
                        {
                            field: 'materialCode',
                            title: '物料编码'
                        },
                        {
                            field: 'materialName',
                            title: '物料名称'
                        },
                        {
                            field: 'materialSpec',
                            title: '物料规格'
                        },
                        {
                            field: 'materialUnit',
                            title: '物料单位'
                        },
                        /*{
                            field: 'weight',
                            title: '总重量'
                        },*/
                        {
                            title: '操作',
                            align: 'center',
                            formatter: function (value, row, index) {
                                var actions = [];
xqs authored
120
                                  //actions.push('<a class="btn btn-primary btn-xs ' + createTaskFalg + '" href="#" onclick="outcheck(\'' + row.id + '\')"><i class="fa fa-gbp"></i>生成盘点单</a> ');
xqs authored
121
122
123
124
125
                                return actions.join('');
                            }
                        }
                    ]
                };
xqs authored
126
                $("#bootstrap-table").bootstrapTable(options);
xqs authored
127
128
129
130
131
132
133
134
135
136
            });

        //子表
        detailChildTable = function(index, row, $detail) {
            let childTable = $detail.html('<table style="table-layout:fixed"></table>').find('table');
            $(childTable).bootstrapTable({
                url: prefix + "/inventoryMaterialSummaryChild",
                method: 'post',
                sortName: "id",
                sortOrder: "desc",
xqs authored
137
                sidePagination: "server",
xqs authored
138
139
140
141
142
143
144
145
146
147
148
149
                contentType: "application/x-www-form-urlencoded",
                //页面渲染
                responseHandler: responseHandler,
                queryParams : {
                    //传值
                    warehouseCode : $('#warehouseCode').val(),
                    materialCode: row.materialCode,
                    //materialName: row.materialName,
                },
                columns: [
                    {
                        field: 'id',
xqs authored
150
                        title: '库存明细ID',
xqs authored
151
152
153
154
155
                        sortable: true,
                        width: 80
                    },
                    {
                        field: 'locationCode',
xqs authored
156
                        title: '库位编码',
xqs authored
157
                        visible: true,
xqs authored
158
                        width: 120
xqs authored
159
160
161
                    },
                    {
                        field: 'containerCode',
xqs authored
162
                        title: '容器编码',
xqs authored
163
                        visible: true,
xqs authored
164
                        width: 100
xqs authored
165
166
167
168
169
170
171
172
173
174
                    },
                    {
                        field: 'companyCode',
                        title: '货主编码',
                        visible: true,
                        width: 80
                    },
                    {
                        field: 'materialCode',
                        title: '物料编码',
xqs authored
175
                        width: 150
xqs authored
176
177
178
179
                    },
                    {
                        field: 'materialName',
                        title: '物料名称',
xqs authored
180
                        width: 150
xqs authored
181
182
183
184
185
186
187
188
                    },
                    {
                        field: 'materialSpec',
                        title: '物料规格',
                        visible: false
                    },
                    {
                        field: 'qty',
xqs authored
189
190
                        title: '库存数量',
                        width: 80
xqs authored
191
192
193
                    },
                    {
                        field: 'materialUnit',
xqs authored
194
195
196
                        title: '单位',
                        visible: true,
                        width: 50
xqs authored
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219

                    },
                    {
                        field: 'projectNo',
                        title: '项目号',
                        visible: true,
                        sortable: true
                    },
                    {
                        field: 'batch',
                        title: '批次',
                        sortable: true,
                        visible: true
                    },
                    {
                        field: 'lot',
                        title: '批号',
                        sortable: true,
                        visible: false
                    },
                    {
                        field: 'receiptCode',
                        title: '入库单编码',
xqs authored
220
221
222
223
224
225
226
227
228
229
230
231
232
                        visible: true
                    },
                    {
                        field: 'created',
                        title: '入库日期',
                        visible: true,
                        sortable: true,
                        width: 90
                    },{
                        field: 'weight',
                        title: '重量',
                        visible: true,
                        width: 50
xqs authored
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
                    },
                    /*{
                        title: '操作',
                        align: 'center',
                        width: 200,
                        formatter: function (value, row, index) {
                            var actions = [];
                                actions.push('<a class="btn btn-success btn-xs ' + confirmFlag + '" href="#" onclick="confirmGapQty(\'' + row.id + '\')"><i class="fa fa-comment"></i>实盘登记</a> ');
                            return actions.join('');
                        }
                    }*/

                ]
            });
        };

    /*__________*/

    function open(title, url, width, height){
        if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
            width = 'auto';
            height = 'auto';
        }
        if (title==null){
            title = false;
        }
        if (url==null){
            url="404.html";
        }
        if ($.common.isEmpty(width)) {
            width = 800;
            // width = ($(window).width() - 100);
        }
        if ($.common.isEmpty(height)) {
            height = ($(window).height() - 50);
        }
        layer.open({
            type: 2,
            area: [width + 'px', height + 'px'],
            fix: false,
            //不固定
            maxmin: true,
            shade: 0.3,
            title: title,
            content: url
            // shadeClose: true, //点击遮罩关闭层
        })
    }

    function responseHandler(res) {
        if (res.code == 200) {
            return { rows: res.data, total: res.total, code: 0};
        } else {
            $.modal.alertWarning(res.msg);
            return { rows: [], total: 0 };
        }
    }
xqs authored
291
292
293
294
295
296
297
    function queryParams (params) {
        var curParams = {
            // 传递参数查询参数
            warehouseCode:  $('#warehouseCode').val(),
        };
        return curParams;
    }
xqs authored
298
299
300
301

</script>
</body>
</html>