|
1
2
3
4
5
6
7
8
9
|
<!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-receiving-add">
<input id="receiptId" name="receiptId" type="hidden" readonly="readonly">
<input id="receiptDetailId" name="receiptDetailId" type="hidden" readonly="readonly">
|
|
10
|
<div class="form-group">
|
|
11
12
13
14
15
16
|
<label class="col-sm-3 control-label">收货单编码:</label>
<div class="col-sm-8">
<input id="receiptCode" name="receiptCode" class="form-control" type="text" readonly="readonly">
</div>
</div>
<div class="form-group">
|
|
17
|
<label class="col-sm-3 control-label">物料编码:</label>
|
|
18
19
20
21
22
23
24
|
<div class="col-sm-8">
<input id="materialCode" name="materialCode" class="form-control" type="text" readonly="readonly" onkeyup=" this.value=this.value.replace(/^\s+|\s+$/g,'')">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">物料名称:</label>
<div class="col-sm-8">
|
|
25
|
<input id="materialName" name="materialName" class="form-control" type="text" readonly="readonly">
|
|
26
27
28
29
30
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">库存状态:</label>
<div class="col-sm-8">
|
|
31
|
<input id="inventorySts" name="inventorySts" class="form-control" type="text" readonly="readonly">
|
|
32
33
|
</div>
</div>
|
|
34
|
<div class="form-group">
|
|
35
36
|
<label class="col-sm-3 control-label">单据数量:</label>
<div class="col-sm-8">
|
|
37
|
<input id="totalQty" name="totalQty" class="form-control" type="text" readonly="readonly">
|
|
38
39
40
41
42
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">已收数量:</label>
<div class="col-sm-8">
|
|
43
|
<input id="openQty" name="openQty" class="form-control" type="text" readonly="readonly">
|
|
44
45
46
47
48
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">单位:</label>
<div class="col-sm-8">
|
|
49
|
<input id="materialUnit" name="materialUnit" class="form-control" type="text" readonly="readonly">
|
|
50
51
52
53
54
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">收货数量:</label>
<div class="col-sm-8">
|
|
55
|
<input id="qty" name="qty" class="form-control" type="text">
|
|
56
57
58
59
60
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">容器编号:</label>
<div class="col-sm-8">
|
|
61
|
<input id="containerCode" name="containerCode" class="form-control" type="text" onkeyup=" this.value=this.value.replace(/^\s+|\s+$/g,'')">
|
|
62
63
64
65
66
67
68
69
70
|
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">库位编码:</label>
<div class="col-sm-8">
<input id="locationCode" name="locationCode" class="form-control" type="text" placeholder="不输入库位则自动分配" onkeyup="this.value=this.value.replace(/^\s+|\s+$/g,'')">
</div>
</div>
<div class="form-group">
|
|
71
72
|
<label class="col-sm-3 control-label">定位规则:</label>
<div class="col-sm-8">
|
|
73
|
<select id="locatingRule" name="locatingRule" class="form-control" th:with="list=${@FilterConfigDetailService.queryFilterConfigDetail('locationRule')}">
|
|
74
|
<option value="">请选择</option>
|
|
75
76
|
<option th:each="item : ${list}" th:text="${item['description']}" th:value="${item['code']}"></option>
</select>
|
|
77
78
|
</div>
</div>
|
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<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 + "receipt/receiving";
$("#form-receiving-add").validate({
rules:{
qtyReceiving:{
required:true,
number: true
},
receiptContainerCode:{
required:true
|
|
98
99
100
101
|
},
qty:{
required:true,
number:true
|
|
102
103
104
105
106
107
108
109
110
|
}
},
submitHandler: function(form) {
$.ajax({
cache : true,
type : "POST",
url : prefix + "/save",
data : {
"receiptCode": $("input[name='receiptCode']").val(),
|
|
111
|
"containerCode": $("input[name='containerCode']").val(),
|
|
112
113
114
|
"receiptDetailId": $("input[name='receiptDetailId']").val(),
"taskType": $("input[name='taskType']:checked").val(),
"locationCode": $("input[name='locationCode']").val(),
|
|
115
|
"qty": $("input[name='qty']").val(),
|
|
116
|
"locatingRule":$("#locatingRule option:selected").val()
|
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
},
async : false,
error : function(request) {
$.modal.alertError("请求失败!");
},
success : function(data) {
// $.operate.saveSuccess(data);
ajaxSuccess(data);
}
});
}
});
// var str=window.location.href;
var urlParms = getUrlParms();
$("input[name='receiptDetailId']").val(urlParms.id);
$("input[name='receiptId']").val(urlParms.receiptId);
$("input[name='receiptCode']").val(urlParms.receiptCode);
$("input[name='materialCode']").val(urlParms.materialCode);
|
|
137
|
$("input[name='materialName']").val(urlParms.materialName);
|
|
138
|
$("input[name='locationCode']").val(urlParms.locationCode);
|
|
139
140
141
142
|
$("input[name='totalQty']").val(urlParms.totalQty);
$("input[name='openQty']").val(urlParms.openQty);
$("input[name='inventorySts']").val(urlParms.inventorySts);
$("input[name='materialUnit']").val(urlParms.materialUnit);
|
|
143
|
$("input[name='qty']").val(urlParms.totalQty-urlParms.openQty);
|
|
144
|
$("input[name='qty']").focus();
|
|
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
var code = $("input[name='receiptCode']").val();
function ajaxSuccess(result) {
if (result.code == web_status.SUCCESS) {
$.modal.msgSuccess(result.msg);
close();
window.parent.window.list_select(code);
window.parent.window.list_receiptInfo(code);
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
}
function close() {
var index = parent.layer.getFrameIndex(window.name);
parent.layer.close(index);
}
</script>
</body>
</html>
|