HrmScheduleMonthList.jsp
6.39 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
147
148
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ page import="weaver.general.*"%>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSet1" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSet2" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="SubCompanyComInfo" class="weaver.hrm.company.SubCompanyComInfo" scope="page"/>
<jsp:useBean id="DepartmentComInfo" class="weaver.hrm.company.DepartmentComInfo" scope="page"/>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<%
if(!HrmUserVarify.checkUserRight("HrmScheduleMaintanceAdd:Add" , user)) {
response.sendRedirect("/notice/noright.jsp") ;
return ;
}
%>
<HTML><HEAD>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<SCRIPT language="javascript" src="../../js/weaver_wev8.js"></script>
</head>
<%
String orgtype = Util.null2String(request.getParameter("type")) ;
String orgid = Util.null2String(request.getParameter("id")) ;
String theyear = Util.null2String(request.getParameter("year")) ;
String themonth = Util.null2String(request.getParameter("month")) ;
String subid=orgid;
String orgname="";
if(orgtype.equals("com"))
orgname=SubCompanyComInfo.getSubCompanyname(orgid);
else{
subid=DepartmentComInfo.getSubcompanyid1(orgid);
orgname=DepartmentComInfo.getDepartmentname(orgid);
}
String supids=SubCompanyComInfo.getAllSupCompany(subid);
String deptids="";
String sql="";
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;
if(orgtype.equals("com"))
sql1="select * from hrmschedulemonth a,hrmresource b where a.hrmid=b.id and b.subcompanyid1="+orgid+" and a.theyear='"+
theyear+"' and a.themonth='"+themonth+"'";
else{
deptids=SubCompanyComInfo.getDepartmentTreeStr(orgid);
deptids=orgid+","+deptids;
deptids=deptids.substring(0,deptids.length()-1);
sql1="select * from hrmschedulemonth a,hrmresource b where a.hrmid=b.id and b.departmentid in("+deptids+") and a.theyear='"+
theyear+"' and a.themonth='"+themonth+"'";
}
RecordSet.executeSql(sql);
//System.out.println(sql);
RecordSet1.executeSql(sql1);
Calendar today = Calendar.getInstance();
String currentyear= Util.add0(today.get(Calendar.YEAR), 4);
String currentmonth= Util.add0(today.get(Calendar.MONTH), 2);
String imagefilename = "/images/hdSystem_wev8.gif";
String titlename = SystemEnv.getHtmlLabelName(19397,user.getLanguage())+":"+SystemEnv.getHtmlLabelName(367,user.getLanguage()) ;
String needfav ="1";
String needhelp ="";
%>
<BODY>
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(93,user.getLanguage())+",javascript:onSubmit();,_self} " ;
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td>
</td>
<td class="rightSearchSpan" style="text-align:right;">
<input type=button class="e8_btn_top" onclick="onSubmit();" value="<%=SystemEnv.getHtmlLabelName(93,user.getLanguage())%>"></input>
<span title="<%=SystemEnv.getHtmlLabelName(23036,user.getLanguage())%>" class="cornerMenu"></span>
</td>
</tr>
</table>
<FORM style="MARGIN-TOP: 0px" name=frmmain id=frmmain method=post action="HrmScheduleMonthOperation.jsp">
<input type=hidden name="operation" value="add">
<wea:layout type="2col" attributes="{'expandAllGroup':'true'}">
<wea:group context='<%=SystemEnv.getHtmlLabelName(15880,user.getLanguage())+SystemEnv.getHtmlLabelName(106,user.getLanguage())%>'>
<wea:item><%if(orgtype.equals("com")){%><%=SystemEnv.getHtmlLabelName(141,user.getLanguage())%><%}else{%><%=SystemEnv.getHtmlLabelName(18939,user.getLanguage())%><%}%></wea:item>
<wea:item><%=orgname%></wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(15880,user.getLanguage())+SystemEnv.getHtmlLabelName(6076,user.getLanguage())%></wea:item>
<wea:item>
<%=theyear+SystemEnv.getHtmlLabelName(445,user.getLanguage())+themonth+SystemEnv.getHtmlLabelName(6076,user.getLanguage()) %>
</wea:item>
</wea:group>
<wea:group context='<%=SystemEnv.getHtmlLabelName(6138,user.getLanguage())%>' attributes="{'groupOperDisplay':'none'}">
<wea:item attributes="{'isTableList':'true'}">
<%
String attr = "{'cols':'"+(RecordSet.getCounts()+1)+"'}";
%>
<wea:layout type="table" attributes='<%=attr %>'>
<wea:group context="" attributes="{'groupDisplay':'none','cws':'10%'}">
<wea:item type="thead"><%=SystemEnv.getHtmlLabelName(15880,user.getLanguage())+SystemEnv.getHtmlLabelName(106,user.getLanguage())%></wea:item>
<%
while(RecordSet.next()){%>
<wea:item type="thead"><%=RecordSet.getString("diffname")%></wea:item>
<%} %>
<%
if(orgtype.equals("com"))
RecordSet2.executeSql("select * from hrmresource where status>-1 and status<4 and subcompanyid1="+orgid+" order by dsporder,lastname");
else
RecordSet2.executeSql("select * from hrmresource where status>-1 and status<4 and departmentid in("+deptids+") order by dsporder,lastname");
while(RecordSet2.next()){
String lastname=RecordSet2.getString("lastname");
String id=RecordSet2.getString("id");
%>
<wea:item><%=lastname%></wea:item>
<%RecordSet.beforFirst();while(RecordSet.next()){
String type=RecordSet.getString("id");
RecordSet1.beforFirst();
String val="";
while(RecordSet1.next()){
if(RecordSet1.getString("hrmid").equals(id)&&RecordSet1.getString("difftype").equals(type)){
val= RecordSet1.getString("hours");
break;
}
}
%>
<wea:item><%=val%></wea:item>
<%}
}%>
</wea:group>
</wea:layout>
</wea:item>
</wea:group>
</wea:layout>
</FORM>
<script type="text/javascript">
function onSubmit(){
location="/hrm/schedule/HrmScheduleMonthEdit.jsp?year=<%=theyear%>&month=<%=themonth%>&type=<%=orgtype%>&id=<%=orgid%>";
}
</script>
</BODY>
</HTML>