Blame view

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