|
1
2
3
4
5
6
|
<!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">
|
|
7
|
<div class="row">
|
huhai
authored
|
8
9
10
11
12
|
<div class="col-sm-12 select-info">
<form id="material-form">
<div class="select-list">
<ul>
<li>
|
|
13
|
存货编码:<input type="text" name="code"/>
|
huhai
authored
|
14
|
</li>
|
|
15
|
<li>
|
|
16
|
存货代码:<input type="text" name="userDef1"/>
|
|
17
|
</li>
|
huhai
authored
|
18
19
20
21
|
<li>
名称:<input type="text" name="name"/>
</li>
<li>
|
huhai
authored
|
22
23
24
|
规格:<input type="text" name="specification"/>
</li>
<li>
|
huhai
authored
|
25
26
27
28
29
30
31
|
类型:<select name="type" th:with="type=${@dict.getType('materialType')}">
<option value="">所有</option>
<option th:each="e : ${type}" th:text="${e['dictLabel']}" th:value="${e['dictValue']}"></option>
</select>
</li>
<li class="time">
<label>创建时间: </label>
|
|
32
|
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[createdBegin]"/>
|
huhai
authored
|
33
|
<span>-</span>
|
|
34
|
<input type="text" class="time-input" id="endTime" placeholder="结束时间" name="params[createdEnd]"/>
|
huhai
authored
|
35
36
37
|
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
huhai
authored
|
38
|
<!--<a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="general:material:export"><i class="fa fa-download"></i> 导出</a>-->
|
huhai
authored
|
39
40
41
42
43
44
|
</li>
</ul>
</div>
</form>
</div>
|
|
45
46
47
48
49
50
51
52
53
|
<div class="btn-group hidden-xs" id="toolbar" role="group">
<a class="btn btn-outline btn-success btn-rounded" onclick="$.operate.add()" shiro:hasPermission="general:material:add">
<i class="fa fa-plus"></i> 新增
</a>
<a class="btn btn-outline btn-danger btn-rounded" onclick="$.operate.batRemove()" shiro:hasPermission="general:material:remove">
<i class="fa fa-trash-o"></i> 删除
</a>
</div>
|
|
54
55
|
<div class="col-sm-12 select-info">
<table id="bootstrap-table" data-mobile-responsive="true" class="table table-bordered table-hover"></table>
|
|
56
|
</div>
|
|
57
|
</div>
|
|
58
59
60
61
62
63
|
</div>
<div th:include="include :: footer"></div>
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('general:material:edit')}]];
var removeFlag = [[${@permission.hasPermi('general:material:remove')}]];
var prefix = ctx + "general/material"
|
huhai
authored
|
64
|
var datas = [[${@dict.getType('sys_normal_disable')}]];
|
|
65
66
67
68
69
70
71
|
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
modalName: "物料",
|
huhai
authored
|
72
|
search: false,
|
|
73
74
|
sortName: "id",
sortOrder: "desc",
|
|
75
76
77
78
79
|
columns: [{
checkbox: true
},
{
field : 'id',
|
|
80
|
title : 'id'
|
|
81
|
},
|
huhai
authored
|
82
|
// {
|
|
83
84
|
// field : 'warehouseCode',
// title : '仓库编码'
|
huhai
authored
|
85
|
// },
|
|
86
|
{
|
|
87
|
field : 'code',
|
|
88
|
title : '存货编码'
|
|
89
90
|
},
{
|
|
91
|
field : 'userDef1',
|
|
92
|
title : '存货代码',
|
|
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
},
{
field : 'type',
title : '物料类别'
},
{
field : 'name',
title : '名称'
},
{
field : 'specification',
title : '规格'
},
{
field : 'brand',
|
huhai
authored
|
108
109
|
title : '品牌' ,
visible:false
|
|
110
111
112
|
},
{
field : 'size',
|
huhai
authored
|
113
114
|
title : '尺码' ,
visible:false
|
|
115
116
117
|
},
{
field : 'color',
|
huhai
authored
|
118
119
|
title : '颜色',
visible:false
|
|
120
121
122
|
},
{
field : 'placeOfOrigin',
|
huhai
authored
|
123
124
|
title : '产地' ,
visible:false
|
|
125
126
127
|
},
{
field : 'daysToExpire',
|
huhai
authored
|
128
129
|
title : '保质期(天)' ,
visible:false
|
|
130
131
132
|
},
{
field : 'expiringDays',
|
huhai
authored
|
133
134
|
title : '临期预警天数' ,
visible:false
|
|
135
136
137
|
},
{
field : 'minShelfLifeDays',
|
huhai
authored
|
138
139
|
title : '收货预警天数' ,
visible:false
|
|
140
141
142
|
},
{
field : 'costPrice',
|
huhai
authored
|
143
144
|
title : '成本',
visible:false
|
|
145
146
147
|
},
{
field : 'listPrice',
|
huhai
authored
|
148
149
|
title : '标价' ,
visible:false
|
|
150
151
152
|
},
{
field : 'netPrice',
|
huhai
authored
|
153
154
|
title : '净价',
visible:false
|
|
155
|
},
|
huhai
authored
|
156
157
158
159
160
161
162
163
|
// {
// field : 'manufactureDate',
// title : '出入库是否按照 生产日期 来匹配'
// },
// {
// field : 'receiptDate',
// title : '出入库是否按照 入库时间 来匹配'
// },
|
|
164
165
166
167
168
169
170
171
172
173
|
{
field : 'created',
title : '创建时间'
},
{
field : 'createdBy',
title : '创建用户'
},
{
field : 'lastUpdated',
|
|
174
|
title : '更新时间'
|
|
175
176
177
178
179
180
181
|
},
{
field : 'lastUpdatedBy',
title : '更新用户'
},
{
field : 'enable',
|
huhai
authored
|
182
183
184
185
186
|
title : '是否有效' ,
align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(datas, value);
}
|
|
187
188
189
190
191
192
193
|
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
|
194
|
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-trash-o"></i>删除</a>');
|
|
195
196
197
198
199
200
201
202
203
|
return actions.join('');
}
}]
};
$.table.init(options);
});
</script>
</body>
</html>
|