testAuditAudit.jsp
4.04 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>审批管理</title>
<meta name="decorator" content="default"/>
<script type="text/javascript">
$(document).ready(function() {
$("#name").focus();
$("#inputForm").validate({
submitHandler: function(form){
loading('正在提交,请稍等...');
form.submit();
},
errorContainer: "#messageBox",
errorPlacement: function(error, element) {
$("#messageBox").text("输入有误,请先更正。");
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
error.appendTo(element.parent().parent());
} else {
error.insertAfter(element);
}
}
});
});
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li><a href="${ctx}/oa/testAudit/">审批列表</a></li>
<li class="active"><a href="#"><shiro:hasPermission name="oa:testAudit:edit">${testAudit.act.taskName}</shiro:hasPermission><shiro:lacksPermission name="oa:testAudit:edit">查看</shiro:lacksPermission></a></li>
</ul>
<form:form id="inputForm" modelAttribute="testAudit" action="${ctx}/oa/testAudit/saveAudit" method="post" class="form-horizontal">
<form:hidden path="id"/>
<form:hidden path="act.taskId"/>
<form:hidden path="act.taskName"/>
<form:hidden path="act.taskDefKey"/>
<form:hidden path="act.procInsId"/>
<form:hidden path="act.procDefId"/>
<form:hidden id="flag" path="act.flag"/>
<sys:message content="${message}"/>
<fieldset>
<legend>${testAudit.act.taskName}</legend>
<table class="table-form">
<tr>
<td class="tit">姓名</td><td>${testAudit.user.name}</td>
<td class="tit">部门</td><td>${testAudit.office.name}</td>
<td class="tit">岗位职级</td><td>${testAudit.post}</td>
</tr>
<tr>
<td class="tit">调整原因</td>
<td colspan="5">${testAudit.content}</td>
</tr>
<tr>
<td class="tit" rowspan="3">调整原因</td>
<td class="tit">薪酬档级</td>
<td>${testAudit.olda}</td>
<td class="tit" rowspan="3">拟调整标准</td>
<td class="tit">薪酬档级</td>
<td>${testAudit.newa}</td>
</tr>
<tr>
<td class="tit">月工资额</td>
<td>${testAudit.oldb}</td>
<td class="tit">月工资额</td>
<td>${testAudit.newb}</td>
</tr>
<tr>
<td class="tit">年薪金额</td>
<td>${testAudit.oldc}</td>
<td class="tit">年薪金额</td>
<td>${testAudit.newc}</td>
</tr>
<tr>
<td class="tit">月增资</td>
<td colspan="2">${testAudit.addNum}</td>
<td class="tit">执行时间</td>
<td colspan="2">${testAudit.exeDate}</td>
</tr>
<tr>
<td class="tit">人力资源部意见</td>
<td colspan="5">
${testAudit.hrText}
</td>
</tr>
<tr>
<td class="tit">分管领导意见</td>
<td colspan="5">
${testAudit.leadText}
</td>
</tr>
<tr>
<td class="tit">集团主要领导意见</td>
<td colspan="5">
${testAudit.mainLeadText}
</td>
</tr>
<tr>
<td class="tit">您的意见</td>
<td colspan="5">
<form:textarea path="act.comment" class="required" rows="5" maxlength="20" cssStyle="width:500px"/>
</td>
</tr>
</table>
</fieldset>
<div class="form-actions">
<shiro:hasPermission name="oa:testAudit:edit">
<c:if test="${testAudit.act.taskDefKey eq 'apply_end'}">
<input id="btnSubmit" class="btn btn-primary" type="submit" value="兑 现" onclick="$('#flag').val('yes')"/>
</c:if>
<c:if test="${testAudit.act.taskDefKey ne 'apply_end'}">
<input id="btnSubmit" class="btn btn-primary" type="submit" value="同 意" onclick="$('#flag').val('yes')"/>
<input id="btnSubmit" class="btn btn-inverse" type="submit" value="驳 回" onclick="$('#flag').val('no')"/>
</c:if>
</shiro:hasPermission>
<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
</div>
<act:histoicFlow procInsId="${testAudit.act.procInsId}"/>
</form:form>
</body>
</html>