frequencyStatistics.html
7.31 KB
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
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<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 select-info">
<form id="inventory-form">
<div class="select-list">
<ul>
<li>
原仓库:<select name="warehouse"
th:with="warehouse=${@dict.getType('originalWarehouse')}">
<option value="">所有</option>
<option th:each="e : ${warehouse}" th:text="${e['dictLabel']}"
th:value="${e['dictValue']}"></option>
</select>
</li>
<li>
库位编码:<input type="text" name="locationCode"/>
</li>
<li>
容器编码:<input type="text" name="containerCode"/>
</li>
<li>
物料编码:<input type="text" name="materialCode"/>
</li>
<li>
物料名称:<input type="text" name="materialName"/>
</li>
<li>
统计类型:<select id="statisticalType" name="statisticalType">
<!-- <option value="locationCode">库位</option>-->
<!-- <option value="containerCode">容器</option>-->
<option value="materialCode">物料</option>
<option value="created">日期</option>
</select>
</li>
<li class="time">
<label>日期: </label>
<input type="text" class="time-input" id="startTime" placeholder="开始时间"
name="createdBegin" autocomplete="off"/>
<span>-</span>
<input type="text" class="time-input" id="endTime" placeholder="结束时间" name="createdEnd"
autocomplete="off"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
class="fa fa-search"></i> 搜索</a>
<a class="btn btn-warning btn-rounded btn-· sm" onclick="$.form.reset('inventory-form')"><i
class="fa fa-refresh"></i> 重置</a>
<!-- <a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()"><i class="fa fa-download"></i> 导出</a>-->
<!--<a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="general:inventoryHeader:export"><i class="fa fa-download"></i> 导出</a>-->
</li>
</ul>
</div>
</form>
</div>
<div class="col-sm-12 select-info">
<div class="btn-group hidden-xs" id="toolbar" role="group">
</div>
<!-- <span>【库位、容器】统计的是<span style="color: red">次数</span><br>【物料、日期】统计的是<span style="color: red">数额</span></span>-->
<table id="bootstrap-table" data-mobile-responsive="true"
class="table table-bordered table-hover text-nowrap"></table>
</div>
</div>
</div>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
var prefix = ctx + "inventory/frequencyStatistics";
var inventoryStatus = [[${@dict.getType('inventorySts')}]];
var inventoryTransactionType = [[${@dict.getType('inventoryTransactionType')}]];
$(function () {
var options = {
url: prefix + "/frequencyStatisticsList",
modalName: "统计次数",
sortName: "created",
showExport: true, //导出
exportDataType: "all", //导出类型basic', 'all', 'selected'.当前页、所有数据、选中数据
sortOrder: "desc",
search: false,
columns: [
{
field: 'no',
align: 'center',
title: '序号',
formatter: function (value, row, index) {
// 通过表的#id 可以得到每页多少条
var pageSize = $('#bootstrap-table').bootstrapTable('getOptions').pageSize;
// 通过表的#id 可以得到当前第几页
var pageNumber = $('#bootstrap-table').bootstrapTable('getOptions').pageNumber;
// 返回每条的序号: 每页条数 * (当前页 - 1 )+ 序号
return pageSize * (pageNumber - 1) + index + 1;
}
},
{
field: 'materialCode',
align: 'center',
title: '物料编码'
},
{
field: 'materialName',
align: 'center',
title: '物料名称'
},
{
field: 'materialSpec',
align: 'center',
title: '物料规格'
},
{
field: 'materialUnit',
align: 'center',
title: '物料单位'
},
{
field: 'datee',
title: '日期',
align: 'center'
},
{
field: 'taskQty',
title: '总出入库数量',
align: 'center'
},
{
field: 'inQty',
title: '入库数量',
align: 'center'
},
{
field: 'outQty',
title: '出库数量',
align: 'center'
},
// {
// field: 'locationCode',
// align:'center',
// title: '库位编号'
// },
// {
// field: 'containerCode',
// align:'center',
// title: '容器编号'
// },
]
};
$.table.init(options);
});
function report() {
var rows = $("#bootstrap-table").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var ids = "";
for (var i = 0; i < rows.length; i++) {
ids = ids + rows[i].id + ","
}
let url = prefix + '/report/' + ids;
$.modal.open("打印", url);
}
</script>
</body>
</html>