Blame view

src/main/resources/templates/inventory/cyclecountHeader/add.html 5.32 KB
tangying authored
1
2
3
4
5
6
<!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">
mahuandong authored
7
        <form class="form-horizontal m" id="form-cycleCountHeader-add">
tangying authored
8
9
10
			<div class="form-group">
				<label class="col-sm-3 control-label">盘点类型:</label>
				<div class="col-sm-8">
mahuandong authored
11
					<select name="countType" id="countType" class="form-control m-b"  th:with="firstStatus=${@dict.getType('cyclecountType')}">
tangying authored
12
13
14
15
16
17
					<option th:each="e : ${firstStatus}" th:text="${e['dictLabel']}"
							th:value="${e['dictValue']}"></option>
					</select>
				</div>
			</div>
			<div class="form-group">
mahuandong authored
18
19
20
21
				<label class="col-sm-3 control-label">原始盘点内部号:</label>
                <div class="col-sm-8">
                    <input id="countOrderId" name="countOrderId" class="form-control" type="text">
                </div>
tangying authored
22
23
			</div>
			<div class="form-group">	
mahuandong authored
24
				<label class="col-sm-3 control-label">盘点轮次:</label>
tangying authored
25
				<div class="col-sm-8">
mahuandong authored
26
					<input id="round" name="round" class="form-control" type="text">
tangying authored
27
28
29
30
31
32
				</div>
				<!--th:checked="true" 状态按钮默认为启用 $("input[name='enable']").is(':checked')-->
				<!--<div>-->
					<!--<input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="enable" name="enable">-->
				<!--</div>-->
			</div>
mahuandong authored
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
            <div class="form-group">
                <label class="col-sm-3 control-label">货主:</label>
                <div class="col-sm-8">
                    <select id = "companyCode" name="companyCode" class="form-control" th:with="list=${@companyService.selectCompanyByCurrentUserId()}">
                        <option  th:each="item : ${list}" th:text="${item['name']}" th:value="${item['code']}"  th:attr = " code = ${item['code']}"></option>
                    </select>
                </div>
            </div>

            <div class="form-group">
                <label class="col-sm-3 control-label">总货位数:</label>
                <div class="col-sm-8">
                    <input id="totalLocs" name="totalLocs" 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="totalItems" name="totalItems" 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="zoneCode" name="zoneCode" 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="locationFilter" name="locationFilter" 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="sourceCode" name="sourceCode" 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="countOrderId" name="remark" 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="remark" name="remark" class="form-control" type="text">
                </div>
            </div>
tangying authored
86
87
88
89
90
91
92
93
94
95
			<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">
mahuandong authored
96
97
		var prefix = ctx + "inventory/cycleCountHeader"
		$("#form-cycleCountHeader-add").validate({
tangying authored
98
			rules:{
mahuandong authored
99
100
101
102
                companyCode:{
					required:true,
				},
                /*countType:{
tangying authored
103
                    required:true
mahuandong authored
104
105
106
107
108
109
110
111
112
113
114
115
				},*/
                totalLocs:{
                    required:false,
                    digits:true,
                    min:0
                },
                totalItems:{
                    required:false,
                    digits:true,
                    min:0
                },
tangying authored
116
117
			},
			submitHandler: function(form) {
mahuandong authored
118
                var tableValue = $("#form-cycleCountHeader-add").serialize();
huhai authored
119
120
121
122
                // tableValue = formValueReplace(tableValue, "enable", true);
                // tableValue = formValueReplace(tableValue, "companyId", $("#company option:selected").val());
                // tableValue = formValueReplace(tableValue, "companyCode", $("#company option:selected").attr("code"));
                $.operate.save(prefix + "/add", tableValue);
tangying authored
123
124
125
126
127
            }
		});
	</script>
</body>
</html>