|
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">
|
|
7
|
<form class="form-horizontal m" id="form-cycleCountHeader-add">
|
|
8
9
10
|
<div class="form-group">
<label class="col-sm-3 control-label">盘点类型:</label>
<div class="col-sm-8">
|
|
11
|
<select name="countType" id="countType" class="form-control m-b" th:with="firstStatus=${@dict.getType('cyclecountType')}">
|
|
12
13
14
15
16
|
<option th:each="e : ${firstStatus}" th:text="${e['dictLabel']}"
th:value="${e['dictValue']}"></option>
</select>
</div>
</div>
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<div class="form-group">
<label class="col-sm-3 control-label">盘点方式:</label>
<div class="col-sm-8">
<select id = "preferenceCode" name="preferenceCode" class="form-control" th:with="modes=${@cycleCountPreferenceService.selectCycleCountPreferenceList()}">
<option th:each="item : ${modes}" 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">
<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>-->
|
|
35
|
<div class="form-group">
|
|
36
37
38
39
|
<label class="col-sm-3 control-label">原始盘点内部号:</label>
<div class="col-sm-8">
<input id="countOrderId" name="countOrderId" class="form-control" type="text">
</div>
|
|
40
|
</div>
|
|
41
|
<!--<div class="form-group">
|
|
42
|
<label class="col-sm-3 control-label">盘点轮次:</label>
|
|
43
|
<div class="col-sm-8">
|
|
44
|
<input id="round" name="round" class="form-control" type="text">
|
|
45
|
</div>
|
|
46
47
|
</div>-->
<!--<div class="form-group">
|
|
48
49
50
51
52
53
54
55
56
57
|
<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>
|
|
58
59
60
61
|
</div>-->
<!--<div class="form-group">
|
|
62
63
64
65
66
67
68
69
70
71
|
<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>
|
|
72
73
74
|
</div>-->
|
|
75
76
77
78
79
80
81
|
<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>
|
|
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<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>
<div class="form-group">
<label class="col-sm-3 control-label">抽盘范围(单位 %):</label>
<div class="col-sm-8">
<input id="range" name="range" class="form-control" type="text" placeholder="选择抽盘时,请输入1-100内整数数字"
onkeyup="this.value= this.value.replace(/[^0-9]/g,'')">
</div>
</div>
<!--th:checked="true" 状态按钮默认为启用 $("input[name='enable']").is(':checked')-->
<!--<div class="form-group">
<label class="col-sm-3 control-label">是否明盘:</label>
<div class="col-sm-8">
<div class="onoffswitch">
<input type="checkbox" th:checked="false" class="onoffswitch-checkbox" id="types"
name="types">
<label class="onoffswitch-label" for="types">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</div>-->
|
|
111
112
113
114
115
116
117
|
<!--<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>-->
|
|
118
119
120
121
122
123
124
125
126
127
|
<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">
|
|
128
129
|
var prefix = ctx + "inventory/cycleCountHeader"
$("#form-cycleCountHeader-add").validate({
|
|
130
|
rules:{
|
|
131
132
133
134
|
companyCode:{
required:true,
},
/*countType:{
|
|
135
|
required:true
|
|
136
137
138
139
140
141
142
143
144
145
146
147
|
},*/
totalLocs:{
required:false,
digits:true,
min:0
},
totalItems:{
required:false,
digits:true,
min:0
},
|
|
148
149
|
},
submitHandler: function(form) {
|
|
150
|
var tableValue = $("#form-cycleCountHeader-add").serialize();
|
|
151
152
153
154
155
156
157
|
//var tableValue = $.common.getTableValue("#form-cycleCountHeader-add");
//tableValue = formValueReplace(tableValue, "types", $("input[name='types']").is(':checked'));
/* 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);
|
|
158
159
160
161
162
|
}
});
</script>
</body>
</html>
|