Blame view

src/main/resources/templates/config/zoneCapacity/add.html 2.45 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-zoneCapacity-add">
			<div class="form-group">	
pengcheng authored
9
				<label class="col-sm-3 control-label">商品编码:</label>
tangying authored
10
11
12
13
14
15
				<div class="col-sm-8">
                    <input id="materialCode" name="materialCode" class="form-control" type="text">
                    <input id="materialId" name="materialId" type="hidden">
				</div>
			</div>
			<div class="form-group">	
pengcheng authored
16
				<label class="col-sm-3 control-label">货位过滤条件:</label>
tangying authored
17
				<div class="col-sm-8">
18
19
                    <select id="filterCode" name="filterCode" class="form-control" th:with="zones=${@zone.list()}">
                        <option th:each="zone: ${zones}" th:text="${zone['name']}" th:value="${zone['code']}"></option>
tangying authored
20
21
22
23
                    </select>
				</div>
			</div>
			<div class="form-group">	
pengcheng authored
24
				<label class="col-sm-3 control-label">最大数量:</label>
tangying authored
25
				<div class="col-sm-8">
pengcheng authored
26
					<input id="maxQty" name="maxQty" class="form-control" type="text">
tangying authored
27
28
29
				</div>
			</div>
			<div class="form-group">
pengcheng authored
30
				<label class="col-sm-3 control-label">最小数量:</label>
tangying authored
31
				<div class="col-sm-8">
pengcheng authored
32
					<input id="minQty" name="minQty" class="form-control" type="text">
tangying authored
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
				</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">
		var prefix = ctx + "config/zoneCapacity"
		$("#form-zoneCapacity-add").validate({
			rules:{
pengcheng authored
48
                materialCode:{
tangying authored
49
50
					required:true,
				},
51
				filterCode:{
pengcheng authored
52
53
54
55
56
57
					required:true,
				},
				materialCode:{
					required:true,
				},
				maxQty:{
tangying authored
58
                    required:true,
pengcheng authored
59
                    range:[0, 1000000]
tangying authored
60
                },
pengcheng authored
61
				minQty:{
tangying authored
62
                    required:true,
pengcheng authored
63
                    range:[0, 1000000]
tangying authored
64
65
66
67
68
69
70
71
72
73
                },
			},
			submitHandler: function(form) {
                var tableValue = $.common.getTableValue("#form-zoneCapacity-add");
                $.operate.save(prefix + "/add", tableValue);
			}
		});
	</script>
</body>
</html>