addGoods.html
5.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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">
<!--id,headId,code,inventoryId,companyId,companyCode,locationId,locationCode,
containerCode,materialId,materialCode,materialSpecification,receiptCode,receiptId,
receiptDetailId,batch,lot,project,manufactureDate,expirationDate,inventoryStatus,
fromSource,systemQty,countedQty,gapQty,isCreateTask,created,createdBy,lastUpdated,
lastUpdatedBy,status,userDef1,userDef2,userDef3-->
<form class="form-horizontal m" id="form-cyclecountDetail-addGoods" >
<input type="hidden" id="headId" name="headId" th:value="${headId}">
<div class="form-group">
<label class="col-sm-3 control-label">盘点单编号:</label>
<div class="col-sm-8">
<input id="code" name="code" th:value="${code}" class="form-control" type="text" readonly="readonly">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">货主编码:</label>
<div class="col-sm-8">
<!--<input id="companyId" name="companyId" type="hidden" th:value="*{companyId}"> -->
<input id="companyCode" name="companyCode" th:value="${companyCode}" class="form-control" type="text" readonly="readonly">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">容器编号:</label>
<div class="col-sm-8">
<input id="containerCode" name="containerCode" 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="locationCode" name="locationCode" 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="materialCode" name="materialCode" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">库存状态:</label>
<div class="col-sm-8">
<select id="inventoryStatus" name="inventoryStatus" class="form-control m-b" th:with="inventoryStatus=${@dict.getType('inventoryStatus')}">
<option th:each="dict : ${inventoryStatus}" th:text="${dict['dictLabel']}" th:value="${dict['dictValue']}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">系统数量:</label>
<div class="col-sm-8">
<input id="systemQty" name="systemQty" class="form-control" type="text">
</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 + "inventory/cyclecountDetail"
$("#form-cyclecountDetail-addGoods").validate({
rules:{
xxxx:{
required:true,
},
},
submitHandler: function(form) {
$.operate.save(prefix + "/addGoods", $('#form-cyclecountDetail-addGoods').serialize());
}
});
/*function addDetail(id) {
addInner($('#headId').val(),id);
}
function addDetails() {
var rows=$("#bootstrap-table").bootstrapTable('getSelections');
if (rows.length < 1) {
$.modal.alertWarning("请先选择记录");
return;
}
var ids =[];
rows.forEach(function (item) {
ids.push(item.id);
});
addInner($('#headId').val(),ids.join(','));
}
function addInner(headId,ids) {
$.ajax({
cache : true,
type : "post",
url : prefix_cycleDetails + "/add",
data:{
headId:headId,
inventoryIds:ids
},
async : false,
error : function(request) {
$.modal.alertError("请求失败!");
},
success : function(data) {
if(data.code=="200"){
$.modal.alertSuccess("成功");
parent.update();
}else{
$.modal.alertError(data.msg)
}
}
})
}
function isFloat( str ) {
for(i=0;i<str.length;i++) {
if ((str.charAt(i)<"0" || str.charAt(i)>"9")&& str.charAt(i) != '.'){
return false;
}
}
return true;
}*/
</script>
</body>
</html>