Blame view

src/main/resources/templates/config/material/add.html 10.5 KB
tangying authored
1
2
3
4
5
6
7
8
<!DOCTYPE HTML>
<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="white-bg">
    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
        <form class="form-horizontal m" id="form-material-add">
			<div class="form-group">
mahuandong authored
9
				<label class="col-sm-3 control-label">编码:</label>
tangying authored
10
11
12
13
14
				<div class="col-sm-8">
					<input id="code" name="code" class="form-control" type="text">
				</div>
			</div>
			<div class="form-group">
mahuandong authored
15
16
				<label class="col-sm-3 control-label">货主编码:</label>
				<div class="col-sm-8">
mahuandong authored
17
18
19
					<select id="companyCode" name="companyCode" class="form-control" th:with="companyList=${@companyService.selectCompanyByCurrentUserId()}">
						<option th:each="company : ${companyList}" th:text="${company['name']}" th:value="${company['code']}"></option>
					</select>
mahuandong authored
20
21
22
				</div>
			</div>
			<div class="form-group">
tangying authored
23
24
25
26
27
				<label class="col-sm-3 control-label">名称:</label>
				<div class="col-sm-8">
					<input id="name" name="name" class="form-control" type="text">
				</div>
			</div>
mahuandong authored
28
29
30
31
32
33
34
35
36
			<div class="form-group">
				<label class="col-sm-3 control-label">规格:</label>
				<div class="col-sm-8">
					<input id="spec" name="spec" class="form-control" type="text">
				</div>
			</div>
			<div class="form-group">
				<label class="col-sm-3 control-label">单位:</label>
				<div class="col-sm-8">
37
					<input id="unit" name="unit" class="form-control" type="text">
mahuandong authored
38
39
				</div>
			</div>
tangying authored
40
41
42
43
44
45
46
47
48
			<div class="form-group">	
				<label class="col-sm-3 control-label">物料类别:</label>
				<div class="col-sm-8">
					<select id="type" name="type" class="form-control" th:with="materialType=${@dict.getType('materialType')}">
						<option th:each="item : ${materialType}" th:text="${item['dictLabel']}" th:value="${item['dictValue']}"></option>
					</select>
				</div>
			</div>
			<div class="form-group">
mahuandong authored
49
				<label class="col-sm-3 control-label">ABC分类:</label>
mahuandong authored
50
51
				<div class="col-sm-8">
					<input id="abcClass" name="abcClass" class="form-control" type="text">
tangying authored
52
53
54
				</div>
			</div>
			<div class="form-group">
mahuandong authored
55
				<label class="col-sm-3 control-label">保质期(天)</label>
tangying authored
56
				<div class="col-sm-8">
mahuandong authored
57
					<input id="daysToExpire" name="daysToExpire" class="form-control" type="text"/>
tangying authored
58
59
60
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
61
				<label class="col-sm-3 control-label">定位规则:</label>
tangying authored
62
				<div class="col-sm-8">
mahuandong authored
63
					<input id="locatingRule" name="locatingRule" class="form-control" type="text">
tangying authored
64
65
66
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
67
				<label class="col-sm-3 control-label">分配规则:</label>
tangying authored
68
				<div class="col-sm-8">
mahuandong authored
69
					<input id="allocationRule" name="allocationRule" class="form-control" type="text">
tangying authored
70
71
72
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
73
				<label class="col-sm-3 control-label">补货规则:</label>
tangying authored
74
				<div class="col-sm-8">
mahuandong authored
75
					<input id="replenishmentRule" name="replenishmentRule" class="form-control" type="text">
tangying authored
76
77
				</div>
			</div>
mahuandong authored
78
79
80
81
82
83
			<div class="form-group">
				<label class="col-sm-3 control-label">空货位规则:</label>
				<div class="col-sm-8">
					<input id="emptyLocRule" name="emptyLocRule" class="form-control" type="text">
				</div>
			</div>
tangying authored
84
			<div class="form-group">	
mahuandong authored
85
				<label class="col-sm-3 control-label">入库规则</label>
tangying authored
86
				<div class="col-sm-8">
mahuandong authored
87
					<input id="receivingFlow" name="receivingFlow" class="form-control" type="text">
tangying authored
88
89
90
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
91
				<label class="col-sm-3 control-label">出库流程:</label>
tangying authored
92
				<div class="col-sm-8">
mahuandong authored
93
					<input id="shippingFlow" name="shippingFlow" class="form-control" type="text">
tangying authored
94
95
96
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
97
				<label class="col-sm-3 control-label">属性模板:</label>
tangying authored
98
				<div class="col-sm-8">
mahuandong authored
99
					<input id="attributeTemplateCode" name="attributeTemplateCode" class="form-control" type="text">
tangying authored
100
101
102
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
103
				<label class="col-sm-3 control-label">记录序列号:</label>
tangying authored
104
				<div class="col-sm-8">
mahuandong authored
105
					<input id="trackSerialNum" name="trackSerialNum" class="form-control" type="text">
tangying authored
106
107
108
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
109
				<label class="col-sm-3 control-label">自动生成序列号:</label>
tangying authored
110
				<div class="col-sm-8">
mahuandong authored
111
					<input id="autoGenSerialNum" name="autoGenSerialNum" class="form-control" type="text">
tangying authored
112
113
114
				</div>
			</div>
			<div class="form-group">	
mahuandong authored
115
				<label class="col-sm-3 control-label">自动生成序列号表达式:</label>
tangying authored
116
				<div class="col-sm-8">
mahuandong authored
117
					<input id="autoGenSerialNumFormat" name="autoGenSerialNumFormat" class="form-control" type="text">
tangying authored
118
119
				</div>
			</div>
mahuandong authored
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
			<div class="form-group">
				<label class="col-sm-3 control-label">序列号模板:</label>
				<div class="col-sm-8">
					<input id="snTemplateCode" name="snTemplateCode" class="form-control" type="text">
				</div>
			</div>
			<div class="form-group">
				<label class="col-sm-3 control-label">临期预警天数:</label>
				<div class="col-sm-8">
					<input id="expiringDays" name="expiringDays" class="form-control" type="text">
				</div>
			</div>
			<div class="form-group">
				<label class="col-sm-3 control-label">收货预警天数:</label>
				<div class="col-sm-8">
					<input id="minShelfLifeDays" name="minShelfLifeDays" class="form-control" type="text">
				</div>
			</div>
			<!--<div class="form-group">
				<label class="col-sm-3 control-label">数据版本:</label>
				<div class="col-sm-8">
					<input id="version" name="version" class="form-control" type="text">
				</div>
			</div>-->
tangying authored
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">创建时间:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="created" name="created" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">创建用户:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="createdBy" name="createdBy" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">最后修改间:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="lastUpdated" name="lastUpdated" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">更新用户:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="lastUpdatedBy" name="lastUpdatedBy" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
mahuandong authored
168
tangying authored
169
			<div class="form-group">	
mahuandong authored
170
				<label class="col-sm-3 control-label">状态:</label>
tangying authored
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
				<div class="col-sm-8">
					<div class="onoffswitch">
						<input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="enable" name="enable">
						<label class="onoffswitch-label" for="enable">
							<span class="onoffswitch-inner"></span>
							<span class="onoffswitch-switch"></span>
						</label>
					</div>
				</div>
			</div>
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">是否删除:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="deleted" name="deleted" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段1:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef1" name="userDef1" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段2:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef2" name="userDef2" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段3:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef3" name="userDef3" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段4:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef4" name="userDef4" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段5:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef5" name="userDef5" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段6:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef6" name="userDef6" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段7:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef7" name="userDef7" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<!--<div class="form-group">	-->
				<!--<label class="col-sm-3 control-label">自定义字段8:</label>-->
				<!--<div class="col-sm-8">-->
					<!--<input id="userDef8" name="userDef8" class="form-control" type="text">-->
				<!--</div>-->
			<!--</div>-->
			<div class="form-group">
				<div class="form-control-static col-sm-offset-9">
					<button type="submit" class="btn btn-primary">提交</button>
					<button onclick="$.modal.close()" class="btn btn-danger" type="button">关闭</button>
				</div>
			</div>
		</form>
	</div>
    <div th:include="include::footer"></div>
    <script type="text/javascript">
245
		var prefix = ctx + "config/material";
tangying authored
246
247
248
249
250
251
252
		$("#form-material-add").validate({
			rules:{
                code:{
					required:true,
				},
                name:{
                    required:true,
mahuandong authored
253
                }
tangying authored
254
255
256
257
258
259
			},
			submitHandler: function(form) {
				// $.operate.save(prefix + "/add", $('#form-material-add').serialize());
                // var tableValue = $.common.getTableValue("#form-material-add");
                // $.operate.save(prefix + "/add", tableValue);
                var tableValue = $("#form-material-add").serialize();
mahuandong authored
260
                tableValue = formValueReplace(tableValue, "companyCode", $("#companyCode option:selected").val())
tangying authored
261
262
263
264
265
266
267
                tableValue = formValueReplace(tableValue, "enable", $("input[name='enable']").is(':checked'));
                $.operate.save(prefix + "/add", tableValue);
			}
		});
	</script>
</body>
</html>