ResultList.jsp
29.8 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ include file="/systeminfo/init_wev8.jsp"%>
<%@ page import="weaver.common.xtable.TableSql" %>
<%@ page import="weaver.common.xtable.TableConst" %>
<%@ page import="weaver.secondary.xtable.TableColumn" %>
<%@ page import="weaver.secondary.xtable.Table" %>
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="cmutil" class="weaver.gp.util.TransUtil" 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 currentUserId = user.getUID()+"";
String currentdate = TimeUtil.getCurrentDateString();
String year = Util.null2String(request.getParameter("year"));
String type1 = Util.null2String(request.getParameter("type1"));
String type2 = Util.null2String(request.getParameter("type2"));
if(year.equals("")){
year = Util.null2String((String)request.getSession().getAttribute("GP_ACCESS_YEAR"));
if(year.equals("")) year = currentdate.substring(0,4);
}
if(type1.equals("")){
type1 = Util.null2String((String)request.getSession().getAttribute("GP_ACCESS_TYPE1"));
}
if(type2.equals("")){
type2 = Util.null2String((String)request.getSession().getAttribute("GP_ACCESS_TYPE2_"+type1));
}
int isfyear = 0;
int ishyear = 0;
int isquarter = 0;
int ismonth = 0;
rs.executeSql("select count(id) from GP_BaseSetting where resourcetype=2 and isfyear=1");
if(rs.next() && rs.getInt(1)>0) isfyear = 1;
rs.executeSql("select count(id) from GP_BaseSetting where resourcetype=2 and ishyear=1");
if(rs.next() && rs.getInt(1)>0) ishyear = 1;
rs.executeSql("select count(id) from GP_BaseSetting where resourcetype=2 and isquarter=1");
if(rs.next() && rs.getInt(1)>0) isquarter = 1;
rs.executeSql("select count(id) from GP_BaseSetting where resourcetype=2 and ismonth=1");
if(rs.next() && rs.getInt(1)>0) ismonth = 1;
if(isfyear!=1 && ishyear!=1 && isquarter!=1 && ismonth!=1) {
response.sendRedirect("../util/Message.jsp?type=2") ;
return;//未启用任何考核
}
if(isfyear!=1 && type1.equals("4")) type1 = "";
if(ishyear!=1 && type1.equals("3")) type1 = "";
if(isquarter!=1 && type1.equals("2")) type1 = "";
if(ismonth!=1 && type1.equals("1")) type1 = "";
if(type1.equals("")){
if(isfyear==1){ type1 = "4";}
if(ishyear==1){ type1 = "3";}
if(isquarter==1){ type1 = "2";}
if(ismonth==1){ type1 = "1";}
}
if(type2.equals("")){
if(type1.equals("4") || type1.equals("3")) type2 = "0";
if(type1.equals("2")) type2 = TimeUtil.getCurrentSeason();
if(type1.equals("1")) type2 = currentdate.substring(5,7);
rs.executeSql("select count(id) from GP_AccessScore where isvalid=1 and year="+year+" and type1="+type1+" and type2="+type2+" and startdate<='"+currentdate+"'");
if(rs.next() && rs.getInt(1)==0){
if(type1.equals("1")){
if(Integer.parseInt(type2)==1){
year = (Integer.parseInt(year)-1)+"";
type2 = "12";
}else{
type2 = (Integer.parseInt(type2)-1)+"";
}
}else if(type1.equals("2")){
if(Integer.parseInt(type2)==1){
year = (Integer.parseInt(year)-1)+"";
type2 = "4";
}else{
type2 = (Integer.parseInt(type2)-1)+"";
}
}else{
year = (Integer.parseInt(year)-1)+"";
}
}
}
boolean canview = true;
//int currentyear = Integer.parseInt(TimeUtil.getCurrentDateString().substring(0,4));
//int currentmonth = Integer.parseInt(TimeUtil.getCurrentDateString().substring(5,7));
//int currentseason = Integer.parseInt(TimeUtil.getCurrentSeason());
int intyear = Integer.parseInt(year);
int inttype1 = Integer.parseInt(type1);
int inttype2 = Integer.parseInt(type2);
/**
if(intyear>currentyear){
canview = false;
}else if(inttype1==1){
if(intyear==currentyear && inttype2>currentmonth){
canview = false;
}
}else if(inttype1==2){
if(intyear==currentyear && inttype2>currentseason){
canview = false;
}
}
rs.executeSql("select count(id) from GP_AccessScore where isvalid=1 and year="+year+" and type1="+type1+" and type2="+type2);
if(rs.next() && rs.getInt(1)==0){
canview = false;
}*/
String hrmids = Util.fromScreen3(request.getParameter("hrmids"),user.getLanguage());
String subcompanyids = Util.fromScreen3(request.getParameter("subcompanyids"), user.getLanguage());
String subcompanynames = "";
String departmentids = Util.fromScreen3(request.getParameter("departmentids"), user.getLanguage());
String departmentnames = "";
String status = Util.null2String(request.getParameter("status"));
String minresult = Util.null2String(request.getParameter("minresult"));
String maxresult = Util.null2String(request.getParameter("maxresult"));
int isreset = Util.getIntValue(request.getParameter("isreset"),0);
String backfields = " h.id,h.id as hrmid,h.lastname,h.workcode,h.dsporder,t.id as scoreid,t.scorename,t.year,t.type1,t.type2,t.operator,t.status as s_status,t.result,t.isrescore,t.startdate,t.enddate,h.departmentid,h.subcompanyid1,h.jobtitle ";
String fromSql = " HrmResource h join GP_BaseSetting b on h.subcompanyid1=b.resourceid and b.resourcetype=2 left join GP_AccessScore t on h.id=t.userid and t.isvalid=1 and t.year="+year+" and t.type1="+type1+" and t.type2="+type2;
String orderby = " h.dsporder,h.id ";
String sqlWhere = " where h.status in (0,1,2,3) and h.loginid is not null "+(("sqlserver".equals(rs.getDBType()))?" and h.loginid<>''":"")
+" and (h.id="+currentUserId+" or h.managerstr like '%,"+currentUserId+",%' "
+" or exists(select 1 from GP_AccessScoreCheck ac where ac.scoreid=t.id and ac.userid="+currentUserId+")"
+" or exists(select 1 from GP_BaseSetting bs where bs.resourceid=h.subcompanyid1 and bs.resourcetype=2 and (bs.accessconfirm like '%,"+currentUserId+",%' or bs.accessview like '%,"+currentUserId+",%'))"
+" or exists(select 1 from GP_BaseSetting bs where bs.resourceid=h.departmentid and bs.resourcetype=3 and (bs.accessconfirm like '%,"+currentUserId+",%' or bs.accessview like '%,"+currentUserId+",%'))"
+" or exists(select 1 from GP_AccessScoreLog l where l.scoreid=t.id and l.operatetype in (4,5) and l.operator="+currentUserId+")"
+")";
if(inttype1==1){
sqlWhere += " and b.ismonth=1";
}else if(inttype1==2){
sqlWhere += " and b.isquarter=1";
}else if(inttype1==3){
sqlWhere += " and b.ishyear=1";
}else if(inttype1==4){
sqlWhere += " and b.isfyear=1";
}
if(!hrmids.equals("")){
sqlWhere += " and h.id in ("+hrmids+")";
}
/**
if (!subcompanyids.equals("") && !"0".equals(subcompanyids)) {
sqlWhere += " and h.subcompanyid1 in ("+subcompanyids+")";
List subcompanyIdList = Util.TokenizerString(subcompanyids, ",");
for (int i = 0; i < subcompanyIdList.size(); i++) {
subcompanynames += SubCompanyComInfo.getSubCompanyname((String)subcompanyIdList.get(i))+" ";
}
}
if (!departmentids.equals("") && !"0".equals(departmentids)) {
sqlWhere += " and h.departmentid in ("+departmentids+")";
List departmentIdList = Util.TokenizerString(departmentids, ",");
for (int i = 0; i < departmentIdList.size(); i++) {
departmentnames += DepartmentComInfo.getDepartmentname((String)departmentIdList.get(i))+" ";
}
}*/
int includesub = Util.getIntValue(request.getParameter("includesub"),3);
if(!subcompanyids.equals("")&&!subcompanyids.equals("0")){//分部ID
subcompanynames = SubCompanyComInfo.getSubCompanyname(subcompanyids);
if(includesub==2){
String subCompanyIds = "";
ArrayList list = new ArrayList();
SubCompanyComInfo.getSubCompanyLists(subcompanyids,list);
for(int i=0;i<list.size();i++){
subCompanyIds += ","+(String)list.get(i);
//subcompanynames += SubCompanyComInfo.getSubCompanyname((String)list.get(i))+" ";
}
if(list.size()>0)subCompanyIds = subCompanyIds.substring(1);
sqlWhere += " and h.subcompanyid1 in ("+subCompanyIds+")";
}else if(includesub==3){
String subCompanyIds = subcompanyids;
//subcompanynames += SubCompanyComInfo.getSubCompanyname(subcompanyids)+" ";
ArrayList list = new ArrayList();
SubCompanyComInfo.getSubCompanyLists(subcompanyids,list);
for(int i=0;i<list.size();i++){
subCompanyIds += ","+(String)list.get(i);
//subcompanynames += SubCompanyComInfo.getSubCompanyname((String)list.get(i))+" ";
}
sqlWhere += " and h.subcompanyid1 in ("+subCompanyIds+")";
}else{
sqlWhere += " and h.subcompanyid1 in ("+subcompanyids+")";
}
}
int includedept = Util.getIntValue(request.getParameter("includedept"),3);
if(!departmentids.equals("") && !"0".equals(departmentids)){//部门ID
departmentnames = DepartmentComInfo.getDepartmentname(departmentids);
if(includedept==2){
String departmentIds = "";
ArrayList list = new ArrayList();
SubCompanyComInfo.getSubDepartmentLists(departmentids,list);
for(int i=0;i<list.size();i++){
departmentIds += ","+(String)list.get(i);
//departmentnames += DepartmentComInfo.getDepartmentname((String)list.get(i))+" ";
}
if(list.size()>0) departmentIds = departmentIds.substring(1);
sqlWhere += " and h.departmentid in ("+departmentIds+")";
}else if(includedept==3){
String departmentIds = departmentids;
//departmentnames += DepartmentComInfo.getDepartmentname(departmentids)+" ";
ArrayList list = new ArrayList();
SubCompanyComInfo.getSubDepartmentLists(departmentids,list);
for(int i=0;i<list.size();i++){
departmentIds += ","+(String)list.get(i);
//departmentnames += DepartmentComInfo.getDepartmentname((String)list.get(i))+" ";
}
sqlWhere += " and h.departmentid in ("+departmentIds+")";
}else{
sqlWhere += " and h.departmentid in ("+departmentids+")";
}
}
if(status.equals("0")){
sqlWhere += " and t.startdate<='"+currentdate+"' and t.enddate>='"+currentdate+"' and (t.status=0 or t.status=2)";
}
if(status.equals("1")){
sqlWhere += " and t.startdate<='"+currentdate+"' and t.enddate>='"+currentdate+"' and t.status=1";
}
if(status.equals("3")){
sqlWhere += " and t.startdate<='"+currentdate+"' and t.status=3";
}
if(status.equals("-1")){
sqlWhere += " and t.id is null";
}
if(status.equals("4")){
sqlWhere += " and t.startdate>'"+currentdate+"'";
}
if(status.equals("5")){
sqlWhere += " and t.enddate<'"+currentdate+"' and (t.status=0 or t.status=2 or t.status=1)";
}
if(!minresult.equals("")){
sqlWhere += " and t.result>="+minresult;
}
if(!maxresult.equals("")){
sqlWhere += " and t.result<="+maxresult;
}
if(isreset==1){
sqlWhere += " and t.isrescore=1";
}
String titlename = cmutil.getYearType(year+"+"+type1+"+"+type2 )+ "绩效考核结果";
request.getSession().setAttribute("GP_ACCESS_YEAR",year);
request.getSession().setAttribute("GP_ACCESS_TYPE1",type1);
request.getSession().setAttribute("GP_ACCESS_TYPE2_"+type1,type2);
%>
<HTML>
<head>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<script language="javascript" src="/js/weaver_wev8.js"></script>
<link rel='stylesheet' type='text/css' href='/js/extjs/resources/css/ext-all_wev8.css' />
<link rel='stylesheet' type='text/css' href='/js/extjs/resources/css/xtheme-gray_wev8.css'/>
<link rel='stylesheet' type='text/css' href='/css/weaver-ext_wev8.css' />
<script type='text/javascript' src='/js/extjs/adapter/ext/ext-base_wev8.js'></script>
<script type='text/javascript' src='/js/extjs/ext-all_wev8.js'></script>
<%if(user.getLanguage()==7) {%>
<script type='text/javascript' src='/js/extjs/build/locale/ext-lang-zh_CN_wev8.js'></script>
<script type='text/javascript' src='/js/weaver-lang-cn-gbk_wev8.js'></script>
<%} else if(user.getLanguage()==8) {%>
<script type='text/javascript' src='/js/extjs/build/locale/ext-lang-en_wev8.js'></script>
<script type='text/javascript' src='/js/weaver-lang-en-gbk_wev8.js'></script>
<%}%>
<script type="text/javascript" src="/secondwev/js/WeaverTableExt.js"></script>
<link rel="stylesheet" type="text/css" href="/css/weaver-ext-grid_wev8.css" />
<link rel="stylesheet" type="text/css" href="../css/table.css?1" />
<link rel="stylesheet" type="text/css" href="../css/tab.css" />
<style type="text/css">
.status{width: 30px;height: 24px;margin-right: 4px;display:-moz-inline-box;display:inline-block;float: left;}
.status1{background: url('../images/status1.png') center no-repeat;}
.status2{background: url('../images/status2.png') center no-repeat;}
.status3{background: url('../images/status3.png') center no-repeat;}
.status4{background: url('../images/status4.png') center no-repeat;}
.status5{background: url('../images/status5.png') center no-repeat;}
.status6{background: url('../images/status6.png') center no-repeat;}
.status7{background: url('../images/status7.png') center no-repeat;}
.status8{background: url('../images/status8.png') center no-repeat;}
.status_txt{height: 24px;display:-moz-inline-box;display:inline-block;float: left;}
.rescore{width: 14px;height: 22px;background: url('../images/rescore.png') center no-repeat;display:-moz-inline-box;display:inline-block;}
.operatespan{float: right;margin-right: 10px;}
</style>
<%@ include file="/secondwev/common/head.jsp" %>
</head>
<body style="overflow: hidden;">
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp"%>
<%
RCMenu += "{" + SystemEnv.getHtmlLabelName(197, user.getLanguage()) + ",javascript:doSearch();,_self} ";
RCMenuHeight += RCMenuHeightStep;
RCMenu += "{"+"Excel,javascript:exportExcel(),_top} " ;
RCMenuHeight += RCMenuHeightStep;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp"%>
<form id="searchForm" name="searchForm" action="ResultList.jsp" method="post">
<input type="hidden" id="year" name="year" value="<%=year %>">
<input type="hidden" id="type1" name="type1" value="<%=type1 %>">
<input type="hidden" id="type2" name="type2" value="<%=type2 %>">
<table width=100% height=100% border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="10"/>
<col width=""/>
<col width="10"/>
</colgroup>
<tr>
<td></td>
<td valign="top">
<TABLE class=Shadow>
<tr>
<td valign="top">
<div class="tabpanel">
<div id="yearpanel" class="yearpanel" > <%=year %></div>
<%if(isfyear==1){ %><div class="tab <%if(type1.equals("4")){ %>tab_click<%} %>" onclick="changeType(4)">年度</div><%} %>
<%if(ishyear==1){ %><div class="tab <%if(type1.equals("3")){ %>tab_click<%} %>" onclick="changeType(3)">半年</div><%} %>
<%if(isquarter==1){%><div class="tab <%if(type1.equals("2")){ %>tab_click<%} %>" onclick="changeType(2)">季度</div><%} %>
<%if(ismonth==1){ %><div class="tab <%if(type1.equals("1")){ %>tab_click<%} %>" onclick="changeType(1)">月度</div><%} %>
<%if(type1.equals("1")){ %>
<div class="tab2_panel" style="width: 422px;">
<%for(int i=1;i<13;i++){ %>
<div class="tab2 <%if(Integer.parseInt(type2)==i){ %>tab2_click<%} %>" onclick="changeType2(<%=i %>)"><%=i %>月</div>
<%} %>
</div>
<%}else if(type1.equals("2")){ %>
<div class="tab2_panel" style="width: 142px;">
<%for(int i=1;i<5;i++){ %>
<div class="tab2 <%if(Integer.parseInt(type2)==i){ %>tab2_click<%} %>" onclick="changeType2(<%=i %>)"><%=i %>季度</div>
<%} %>
</div>
<%}else{ %>
<div class="tab2_panel" style="width: 1px;border-right: 0px;"></div>
<%} %>
<div class="maintitle"><%=titlename%></div>
</div>
<%if(canview){ %>
<TABLE id="searchTable" class="searchtable" cellpadding="0" cellspacing="0" border="0">
<COLGROUP>
<COL width="11%"/>
<COL width="22%"/>
<COL width="11%"/>
<COL width="22%"/>
<COL width="12%"/>
<COL width="22%"/>
</COLGROUP>
<TBODY>
<TR>
<TD class="title">状态</TD>
<TD class="value">
<select name="status">
<option value=""></option>
<option value="0" <%if(status.equals("0")){ %> selected="selected" <%} %>>考核中</option>
<option value="1" <%if(status.equals("1")){ %> selected="selected" <%} %>>审批中</option>
<option value="3" <%if(status.equals("3")){ %> selected="selected" <%} %>>已完成</option>
<option value="4" <%if(status.equals("4")){ %> selected="selected" <%} %>>未开始</option>
<option value="5" <%if(status.equals("5")){ %> selected="selected" <%} %>>已过期</option>
<option value="-1" <%if(status.equals("-1")){ %> selected="selected" <%} %>>无方案或无数据</option>
</select>
</TD>
<TD class="title">成绩</TD>
<TD class="value">
<input class=InputStyle maxLength=10 size=6 id="minresult" name="minresult" value="<%=minresult %>" onKeyPress="ItemNum_KeyPress('minresult')" onBlur="checknumber('minresult')"/>
-- <input class=InputStyle maxLength=10 size=6 id="maxresult" name="maxresult" value="<%=maxresult %>" onKeyPress="ItemNum_KeyPress('maxreslut')" onBlur="checknumber('maxreslut')"/>
<input type="checkbox" id="isreset" name="isreset" value="<%=isreset %>" <%if(isreset==1){ %> checked="checked" <%} %>/>有更新
</TD>
<TD class="title">人员</TD>
<TD class="value">
<INPUT class="wuiBrowser" type="hidden" id="hrmids" name="hrmids" value="<%=hrmids %>" _required="no"
_displayTemplate="<A href='javaScript:openhrm(#b{id})' onclick='pointerXY(event)'>#b{name}</A>"
_displayText="<%=cmutil.getPerson(hrmids) %>" _param="resourceids"
_url="/systeminfo/BrowserMain.jsp?url=/hrm/resource/MutiResourceBrowser.jsp" />
</TD>
</TR>
<tr>
<TD class="title">分部</TD>
<TD class="value">
<table class="innertable" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<select class=InputStyle name="includesub">
<option value="3" <%if(includesub==3){%>SELECTED<%}%>>含子分部</option>
<option value="1" <%if(includesub==1){%>SELECTED<%}%>>仅本分部</option>
<option value="2" <%if(includesub==2){%>SELECTED<%}%>>仅子分部</option>
</select>
</td>
<td>
<INPUT class="wuiBrowser" type="hidden" id="subcompanyids" name="subcompanyids" value="<%=subcompanyids %>"
_displayText="<%=subcompanynames %>"
_url="/systeminfo/BrowserMain.jsp?url=/hrm/company/SubcompanyBrowser.jsp" />
</td>
</tr>
</table>
</TD>
<TD class="title">部门</TD>
<TD class="value" colspan="3">
<table class="innertable" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<select class=InputStyle name="includesub">
<option value="3" <%if(includedept==3){%>SELECTED<%}%>>含子部门</option>
<option value="1" <%if(includedept==1){%>SELECTED<%}%>>仅本部门</option>
<option value="2" <%if(includedept==2){%>SELECTED<%}%>>仅子部门</option>
</select>
</td>
<td>
<INPUT class="wuiBrowser" type="hidden" id="departmentids" name="departmentids" value="<%=departmentids %>"
_displayText="<%=departmentnames %>"
_url="/systeminfo/BrowserMain.jsp?url=/hrm/company/DepartmentBrowser.jsp" />
</td>
</tr>
</table>
<div style="width: auto;height: 26px;float: right;margin-top: 3px;">
<div class="btn1 btn" onclick="doSearch();" title="搜索">搜索</div>
<div class="btn1 btn" onclick="exportExcel();" title="导出Excel">导出</div>
</div>
</TD>
</tr>
</TBODY>
</TABLE>
<%
//out.println("select "+backfields+" from "+fromSql+ sqlWhere);
ArrayList xTableColumnList=new ArrayList();
TableColumn xTableColumn_user=new TableColumn();
xTableColumn_user.setColumn("hrmid");
xTableColumn_user.setDataIndex("hrmid");
xTableColumn_user.setHeader("人员");
xTableColumn_user.setTransmethod("weaver.gp.util.TransUtil.getPerson");
xTableColumn_user.setPara_1("column:hrmid");
xTableColumn_user.setSortable(true);
xTableColumn_user.setHideable(true);
xTableColumn_user.setWidth(0.003);
xTableColumnList.add(xTableColumn_user);
TableColumn xTableColumn_subcompany=new TableColumn();
xTableColumn_subcompany.setColumn("subcompanyid1");
xTableColumn_subcompany.setDataIndex("subcompanyid1");
xTableColumn_subcompany.setHeader("分部");
xTableColumn_subcompany.setTransmethod("weaver.hrm.company.SubCompanyComInfo.getSubCompanyname");
xTableColumn_subcompany.setPara_1("column:subcompanyid1");
xTableColumn_subcompany.setSortable(true);
xTableColumn_subcompany.setHideable(true);
xTableColumn_subcompany.setWidth(0.006);
xTableColumnList.add(xTableColumn_subcompany);
TableColumn xTableColumn_department=new TableColumn();
xTableColumn_department.setColumn("departmentid");
xTableColumn_department.setDataIndex("departmentid");
xTableColumn_department.setHeader("部门");
xTableColumn_department.setTransmethod("weaver.hrm.company.DepartmentComInfo.getDepartmentname");
xTableColumn_department.setPara_1("column:departmentid");
xTableColumn_department.setSortable(true);
xTableColumn_department.setHideable(true);
xTableColumn_department.setWidth(0.006);
xTableColumnList.add(xTableColumn_department);
TableColumn xTableColumn_result=new TableColumn();
xTableColumn_result.setColumn("result");
xTableColumn_result.setDataIndex("result");
xTableColumn_result.setHeader("得分");
xTableColumn_result.setTransmethod("weaver.gp.util.TransUtil.getScoreResultView");
xTableColumn_result.setPara_1("column:result");
xTableColumn_result.setPara_2("column:scoreid+column:isrescore+column:id+"+intyear+"+"+inttype1+"+"+inttype2);
xTableColumn_result.setSortable(true);
xTableColumn_result.setHideable(true);
xTableColumn_result.setWidth(0.003);
xTableColumnList.add(xTableColumn_result);
TableColumn xTableColumn_status=new TableColumn();
xTableColumn_status.setColumn("s_status");
xTableColumn_status.setDataIndex("s_status");
xTableColumn_status.setHeader("状态");
xTableColumn_status.setTransmethod("weaver.gp.util.TransUtil.getScoreStatusDetail");
xTableColumn_status.setPara_1("column:scoreid");
xTableColumn_status.setPara_2("column:s_status+column:operator+column:startdate+column:enddate+column:type1+column:id+"+intyear+"+"+inttype1+"+"+inttype2);
xTableColumn_status.setSortable(true);
xTableColumn_status.setHideable(true);
xTableColumn_status.setWidth(0.012);
xTableColumnList.add(xTableColumn_status);
/**
TableColumn xTableColumn_enddate=new TableColumn();
xTableColumn_enddate.setColumn("enddate");
xTableColumn_enddate.setDataIndex("enddate");
xTableColumn_enddate.setHeader("截止日期");
xTableColumn_enddate.setSortable(true);
xTableColumn_enddate.setHideable(true);
xTableColumn_enddate.setWidth(0.005);
xTableColumnList.add(xTableColumn_enddate);
*/
/**
TableColumn xTableColumn_operate=new TableColumn();
xTableColumn_operate.setColumn("scoreid");
xTableColumn_operate.setDataIndex("scoreid");
xTableColumn_operate.setHeader("操作");
xTableColumn_operate.setTransmethod("weaver.gp.util.TransUtil.getScoreResultView");
xTableColumn_operate.setPara_1("column:scoreid");
xTableColumn_operate.setSortable(true);
xTableColumn_operate.setHideable(true);
xTableColumn_operate.setWidth(0.004);
xTableColumnList.add(xTableColumn_operate);
*/
TableSql xTableSql=new TableSql();
xTableSql.setBackfields(backfields);
xTableSql.setPageSize(20);
xTableSql.setSqlform(fromSql);
xTableSql.setSqlwhere(sqlWhere);
xTableSql.setSqlprimarykey("h.id");
xTableSql.setSqlisdistinct("true");
xTableSql.setSort(orderby);
xTableSql.setDir(TableConst.ASC);
Table xTable=new Table(request);
xTable.setTableNeedRowNumber(true);
xTable.setTableSql(xTableSql);
xTable.setTableColumnList(xTableColumnList);
String sql = "select distinct " + backfields + " from " + fromSql + sqlWhere
+ " order by h.dsporder,h.id";
request.getSession().setAttribute("GP_ACCESSRESULT_SQL",sql);
request.getSession().setAttribute("GP_ACCESSRESULT_TITLE",titlename);
%>
<%=xTable.myToString("64")%>
<%}else{ %>
<font style="color: red;font-size: 13px;margin-left: 5px;">此周期暂无数据!</font>
<%} %>
</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
</table>
</form>
<iframe id="searchexport" style="display:none"></iframe>
<div id="yearselect" class="yearselect">
<%
int currentyear = Integer.parseInt(currentdate.substring(0,4));
for(int i=2013;i<(currentyear+3);i++){ %>
<div class="yearoption" _val="<%=i %>"> <%=i %></div>
<% } %>
</div>
<script type="text/javascript" src="../js/tab.js"></script>
<script type="text/javascript">
$(document).ready(function(){
jQuery("#isreset").bind("click",function(){
if(jQuery(this).attr("checked")){
jQuery(this).val(1);
}else{
jQuery(this).val(0);
}
});
jQuery("div.btn").live("mouseover",function(){
jQuery(this).addClass("btn_hover");
}).live("mouseout",function(){
jQuery(this).removeClass("btn_hover");
});
});
document.onkeydown=keyListener;
function keyListener(e){
e = e ? e : event;
if(e.keyCode == 13){
doSearch();
}
}
function doSearch(){
$("#searchForm").submit();
}
function doSearch2(type,orgid){
if(type==1){
jQuery("#subcompanyids").val("");
jQuery("#departmentids").val("");
jQuery("#hrmids").val("");
}else if(type==2){
jQuery("#subcompanyids").val(orgid);
jQuery("#departmentids").val("");
jQuery("#hrmids").val("");
}else if(type==3){
jQuery("#subcompanyids").val("");
jQuery("#departmentids").val(orgid);
jQuery("#hrmids").val("");
}else if(type==4){
jQuery("#subcompanyids").val("");
jQuery("#departmentids").val("");
jQuery("#hrmids").val(orgid);
}
doSearch();
}
function exportExcel(){
jQuery("#searchexport").attr("src","AccessExport.jsp");
}
function doDelete(id){
if(confirm("确定删除此指令?")){
$.ajax({
type: "post",
url: "Operation.jsp",
data:{"operation":"del_command","id":id},
contentType : "application/x-www-form-urlencoded;charset=UTF-8",
complete: function(data){
//var txt = jQuery.trim(data.responseText);
_table.refresh();
parent.loadElement(-1);
}
});
}
}
function setCommuse(commandid,commuse){
$.ajax({
type: "post",
url: "Operation.jsp",
data:{"operation":"set_command","id":commandid,"commuse":commuse},
contentType : "application/x-www-form-urlencoded;charset=UTF-8",
complete: function(data){
//var txt = jQuery.trim(data.responseText);
_table.refresh();
parent.loadElement(-1);
}
});
}
function onRefresh(){
_table.refresh();
}
function doApprove(scoreids) {
if(confirm("确定批准此考核结果?")){
jQuery.ajax({
type: "post",
url: "/performance/access/AccessOperation.jsp",
data:{"operation":"quick_approve","scoreids":scoreids},
contentType : "application/x-www-form-urlencoded;charset=UTF-8",
complete: function(data){
onRefresh();
}
});
}
}
function doReturn(scoreids) {
if(confirm("确定退回此考核结果??")){
jQuery.ajax({
type: "post",
url: "/performance/access/AccessOperation.jsp",
data:{"operation":"quick_return","scoreids":scoreids},
contentType : "application/x-www-form-urlencoded;charset=UTF-8",
complete: function(data){
onRefresh();
}
});
}
}
function approveBatch(){
var selectedIds = _table._xtable_CheckedCheckboxId();
if(selectedIds == ""){
alert("请选择要批准的数据!");
return;
}else{
selectedIds = selectedIds.substring(0,selectedIds.length-1);
}
doApprove(selectedIds);
}
function returnBatch(){
var selectedIds = _table._xtable_CheckedCheckboxId();
if(selectedIds == ""){
alert("请选择要退回准的数据!");
return;
}else{
selectedIds = selectedIds.substring(0,selectedIds.length-1);
}
doReturn(selectedIds);
}
function changeYear(year){
jQuery("#year").val(year);
doSearch();
}
function changeType(type){
jQuery("#type1").val(type);
jQuery("#type2").val("");
doSearch();
}
function changeType2(type){
jQuery("#type2").val(type);
doSearch();
}
</script>
</body>
</html>