LgcRpAssetResourceSum.jsp
3.03 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
<%@ page import="weaver.general.Util" %>
<%@ page import="java.util.*" %>
<jsp:useBean id="LgcRpSumManage" class="weaver.lgc.report.LgcRpSumManage" scope="page" />
<jsp:useBean id="ResourceComInfo" class="weaver.hrm.resource.ResourceComInfo" scope="page"/>
<%@ page language="java" contentType="text/html; charset=UTF-8" %> <%@ include file="/systeminfo/init_wev8.jsp" %>
<HTML><HEAD>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
</head>
<%
String imagefilename = "/images/hdReport_wev8.gif";
String titlename = SystemEnv.getHtmlLabelName(352,user.getLanguage())+":"+SystemEnv.getHtmlLabelName(179,user.getLanguage());
String needfav ="1";
String needhelp ="";
%>
<BODY>
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
//RCMenu += "{"+SystemEnv.getHtmlLabelName(86,user.getLanguage())+",javascript:onSave(),_top} " ;
//RCMenuHeight += RCMenuHeightStep ;
%>
<table width=100% height=100% border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="10">
<col width="">
<col width="10">
<tr>
<td height="10" colspan="3"></td>
</tr>
<tr>
<td ></td>
<td valign="top">
<TABLE class=Shadow>
<tr>
<td valign="top">
<%
LgcRpSumManage.setOptional("resource") ;
LgcRpSumManage.getRpResult() ;
%>
<TABLE class=ListStyle width="100%" cellspacing=1>
<COLGROUP>
<COL align=left width="20%">
<COL align=left width="50%">
<COL align=right width="15%">
<COL align=right width="15%">
<TBODY>
<TR class=Header>
<TH colSpan=4><%=SystemEnv.getHtmlLabelName(324,user.getLanguage())%></TH>
</TR>
<TR class=Header>
<TH><%=SystemEnv.getHtmlLabelName(179,user.getLanguage())%></TH>
<TH><%=SystemEnv.getHtmlLabelName(535,user.getLanguage())%></TH>
<TH><%=SystemEnv.getHtmlLabelName(363,user.getLanguage())%></TH>
<TH>%</TH>
</TR>
<TR class=Line><TD colSpan=4></TD></TR>
<%
int i=0;
while(LgcRpSumManage.next()) {
String resultid = LgcRpSumManage.getResultID();
String resultcount = LgcRpSumManage.getResultCount();
String resultpercent = LgcRpSumManage.getResultPercent() ;
String imagepercent = LgcRpSumManage.getImagePercent() ;
if(i==0){
i=1;
%>
<TR class=DataLight>
<%
}else{
i=0;
%>
<TR class=DataDark>
<%
}
%>
<TR class=datadark>
<TD><A
href="/hrm/resource/HrmResource.jsp?id=<%=resultid%>"><%=Util.toScreen(ResourceComInfo.getResourcename(resultid),user.getLanguage())%></A></TD>
<TD>
<TABLE height="100%" cellSpacing=0 width="100%">
<TBODY>
<TR>
<a href="/lgc/search/LgcSearchOperation.jsp?resourceid=<%=resultid%>&operation=search"><TD class=redgraph width="<%=imagepercent%>" style="CURSOR:HAND"> </TD></a>
<TD> </TD>
</TR>
</TBODY>
</TABLE>
</TD>
<TD><%=resultcount%></TD>
<TD><%=resultpercent%></TD>
</TR>
<% } %>
</TBODY>
</TABLE>
</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
<tr>
<td height="10" colspan="3"></td>
</tr>
</table>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
</BODY></HTML>