HrmScheduleMonthHistory.jsp
4.24 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
135
136
137
138
139
140
141
142
143
144
145
146
<%@ page language="java" contentType="text/html; charset=UTF-8" %> <%@ include file="/systeminfo/init_wev8.jsp" %>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="RecordSet1" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="Util" class="weaver.general.Util" scope="page" />
<jsp:useBean id="ResourceComInfo" class="weaver.hrm.resource.ResourceComInfo" scope="page"/>
<jsp:useBean id="SubCompanyComInfo" class="weaver.hrm.company.SubCompanyComInfo" scope="page"/>
<jsp:useBean id="DepartmentComInfo" class="weaver.hrm.company.DepartmentComInfo" scope="page"/>
<%
String userid = ""+user.getUID();
String subid=DepartmentComInfo.getSubcompanyid1(ResourceComInfo.getDepartmentID(userid));
String supids=SubCompanyComInfo.getAllSupCompany(subid);
String sql="";
Calendar today = Calendar.getInstance();
String currentyear= Util.add0(today.get(Calendar.YEAR), 4);
int currentmonth= today.get(Calendar.MONTH)+1;
if(supids.endsWith(",")){
supids=supids.substring(0,supids.length()-1);
sql="select * from hrmschedulediff where workflowid=5 and (diffscope=0 or (diffscope>0 and subcompanyid="+subid+") or (diffscope=2 and subcompanyid in("+supids+")))";
}
else
sql="select * from hrmschedulediff where workflowid=5 and (diffscope=0 or (diffscope>0 and subcompanyid="+subid+"))";
String sql1="select * from hrmschedulemonth a,hrmresource b where a.hrmid=b.id and b.id="+userid+" and a.theyear<'"+currentyear+"'";
RecordSet.executeSql(sql);
//System.out.println(sql);
RecordSet1.executeSql(sql1);
TreeSet set=new TreeSet(new Comparator(){public int compare(Object o1,Object o2){
return ((String)o2).compareTo((String)o1);}});
while(RecordSet1.next()){
set.add(RecordSet1.getString("theyear")+"-"+RecordSet1.getString("themonth"));
}
%>
<HTML><HEAD>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
</HEAD>
<%
String imagefilename = "/images/hdDOC_wev8.gif";
String titlename = SystemEnv.getHtmlLabelName(367,user.getLanguage())+":"+SystemEnv.getHtmlLabelName(19421,user.getLanguage());
String needfav ="1";
String needhelp ="";
%>
<BODY>
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(1290,user.getLanguage())+",javascript:history.back(),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<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">
<b>
<%=SystemEnv.getHtmlLabelName(15880,user.getLanguage())+SystemEnv.getHtmlLabelName(1477,user.getLanguage())+"("+user.getLastname()+")"%>
</b>
<TABLE class=ListStyle cellspacing=1>
<TBODY>
<TR class=spacing>
<TR class=Header>
<TH><%=SystemEnv.getHtmlLabelName(15880,user.getLanguage())+SystemEnv.getHtmlLabelName(6076,user.getLanguage())%></TH>
<%while(RecordSet.next()){%>
<TH><%=RecordSet.getString("diffname")%></TH>
<%} %>
</TR>
<TR class=Line><TD colspan=<%=RecordSet.getCounts()+1%>></TD></TR>
<%
boolean isLight = false;
Iterator iter=set.iterator();
while(iter.hasNext()){
String yearmonth=(String)iter.next();
if(isLight)
{%>
<TR CLASS=DataDark>
<% }else{%>
<TR CLASS=DataLight>
<% }%>
<TD><%=yearmonth%></TD>
<%RecordSet.beforFirst();while(RecordSet.next()){
String type=RecordSet.getString("id");
RecordSet1.beforFirst();
String val="";
while(RecordSet1.next()){
if(RecordSet1.getString("theyear").equals(yearmonth.substring(0,4))&&RecordSet1.getString("themonth").equals(yearmonth.substring(5))&&RecordSet1.getString("difftype").equals(type)){
val= RecordSet1.getString("hours");
break;
}
}
%>
<TD class=Field><%=val%></TD>
<%}%>
</TR>
<%
isLight = !isLight;
}
%>
</TBODY>
</TABLE>
</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
<tr>
<td height="10" colspan="3"></td>
</tr>
</table>
<script language=javascript>
function submitData() {
window.history.back();
}
function onReSearch(){
location.href="/meeting/search/Search.jsp";
}
</script>
</body>
</html>