ViewBillMonthWorkinfo.jsp
4.29 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
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/workflow/request/WorkflowViewRequestTitle.jsp" %>
<!-- 明细样式 -->
<link href="/css/ecology8/workflowdetail_wev8.css" type="text/css" rel="stylesheet">
<form name="frmmain" method="post" action="BillMonthWorkinfoOperation.jsp">
<%@ include file="/workflow/request/WorkflowViewRequestBody.jsp" %>
<tr>
<th colspan=2 align=center><%=SystemEnv.getHtmlLabelName(16276,user.getLanguage())%></th>
</tr>
<tr class="Title">
<td colspan=2>
<table class="viewform" style="width:100%">
<!-- 工作总结 -->
<tr><td>
<table Class="ListStyle ViewForm" cellspacing=1 cols=4 id="oTable1">
<COLGROUP>
<COL width="10%"><COL width="20%"> <COL width="20%"><COL width="20%"><COL width="20%">
<tr class=header>
<td> </td>
<td><%=SystemEnv.getHtmlLabelName(16274,user.getLanguage())%></td>
<td><%=SystemEnv.getHtmlLabelName(15488,user.getLanguage())%></td>
<td><%=SystemEnv.getHtmlLabelName(16275,user.getLanguage())%></td>
</tr>
<% boolean islight=true;
RecordSet.executeProc("bill_monthinfodetail_SByType",""+billid+flag+"2");
while(RecordSet.next()){
String curworkdesc=RecordSet.getString("targetresult");
String curscale=RecordSet.getString("scale");
String curpoint=RecordSet.getString("point");
if(curpoint.equals("0")) curpoint="";
%>
<tr class="wfdetailrowblock">
<td> </td>
<td><%=Util.toScreen(curworkdesc,user.getLanguage())%></td>
<td><%=Util.toScreen(curscale,user.getLanguage())%>%</td>
<td><%=Util.toScreen(curpoint,user.getLanguage())%></td>
</tr>
<%
islight=!islight;
}
%>
</table>
</td></tr>
</table>
</td>
</tr>
<!--下月工作目标 !-->
<tr>
<th colspan=2 align=center><%=SystemEnv.getHtmlLabelName(16272,user.getLanguage())%></th>
</tr>
<tr class="Title">
<td colspan=2>
<table class="viewform" style="width:100%">
<!-- 完成事项 -->
<tr><td>
<table Class="ListStyle ViewForm" cellspacing=1 cols=5 id="oTable2">
<COLGROUP>
<COL width="10%"><COL width="20%"> <COL width="20%"><COL width="20%"><COL width="20%">
<tr class=header>
<td> </td>
<td><%=SystemEnv.getHtmlLabelName(16272,user.getLanguage())%></td>
<td><%=SystemEnv.getHtmlLabelName(15492,user.getLanguage())%></td>
<td><%=SystemEnv.getHtmlLabelName(1035,user.getLanguage())%></td>
<td><%=SystemEnv.getHtmlLabelName(15488,user.getLanguage())%></td>
</tr>
<% islight=true;
RecordSet.executeProc("bill_monthinfodetail_SByType",""+billid+flag+"1");
while(RecordSet.next()){
String curworkname=RecordSet.getString("targetname");
String curworkdesc=RecordSet.getString("targetresult");
String curdate=RecordSet.getString("forecastdate");
String curscale=RecordSet.getString("scale");
%>
<tr class="wfdetailrowblock">
<td> </td>
<td><%=Util.toScreen(curworkname,user.getLanguage())%></td>
<td><%=Util.toScreen(curworkdesc,user.getLanguage())%></td>
<td><%=Util.toScreen(curdate,user.getLanguage())%></td>
<td><%=Util.toScreen(curscale,user.getLanguage())%>%</td>
</tr>
<%
islight=!islight;
}
%>
</table>
</td>
</tr>
</table>
<br>
<br>
<!--修正页面过大的BUG-->
<%--@ include file="WorkflowViewSign.jsp" --%>
<jsp:include page="WorkflowViewSignAction.jsp" flush="true">
<jsp:param name="workflowid" value="<%=workflowid%>" />
<jsp:param name="languageid" value="<%=user.getLanguage()%>" />
<jsp:param name="requestid" value="<%=requestid%>" />
<jsp:param name="userid" value="<%=userid%>" />
<jsp:param name="usertype" value="<%=usertype%>" />
<jsp:param name="isprint" value="<%=isprint%>" />
<jsp:param name="nodeid" value="<%=nodeid%>" />
<jsp:param name="desrequestid" value="<%=desrequestid%>" />
<jsp:param name="isurger" value="<%=isurger%>" />
<jsp:param name="wfmonitor" value="<%=wfmonitor%>" />
</jsp:include>
</form>
<script language=javascript>
function doEdit(){
document.frmmain.action="ManageRequest.jsp";
document.frmmain.submit();
}
</script>
</body>
</html>