1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.approval.web;
17
18 import java.text.SimpleDateFormat;
19 import java.util.*;
20
21 import javax.servlet.http.HttpServletRequest;
22 import javax.servlet.http.HttpServletResponse;
23
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.commons.lang.time.DateUtils;
26 import org.apache.log4j.Logger;
27 import org.apache.struts.action.ActionForm;
28 import org.apache.struts.action.ActionForward;
29 import org.apache.struts.action.ActionMapping;
30 import org.hsqldb.lib.StringUtil;
31 import org.json.simple.JSONValue;
32 import org.kuali.hr.time.base.web.TkAction;
33 import org.kuali.hr.time.base.web.ApprovalForm;
34 import org.kuali.hr.time.person.TKPerson;
35 import org.kuali.hr.time.service.base.TkServiceLocator;
36 import org.kuali.hr.time.timesheet.TimesheetDocument;
37 import org.kuali.hr.time.timesummary.TimeSummary;
38 import org.kuali.hr.time.util.TKContext;
39 import org.kuali.hr.time.util.TKUtils;
40 import org.kuali.hr.time.workflow.TimesheetDocumentHeader;
41
42 public class TimeApprovalWSAction extends TkAction {
43
44 private static final Logger LOG = Logger.getLogger(TimeApprovalWSAction.class);
45
46
47
48
49
50
51
52 public ActionForward searchApprovalRows(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
53 TimeApprovalActionForm taaf = (TimeApprovalActionForm) form;
54 List<Map<String, String>> results = new LinkedList<Map<String, String>>();
55 if(StringUtils.isNotEmpty(taaf.getPayBeginDateForSearch())
56 && StringUtils.isNotEmpty(taaf.getPayEndDateForSearch()) ) {
57 Date beginDate = new SimpleDateFormat("MM/dd/yyyy").parse(taaf.getPayBeginDateForSearch());
58 Date endDate = new SimpleDateFormat("MM/dd/yyyy").parse(taaf.getPayEndDateForSearch());
59
60 endDate = DateUtils.addDays(endDate,1);
61 List<String> workAreaList = new ArrayList<String>();
62 if(StringUtil.isEmpty(taaf.getSelectedWorkArea())) {
63 Set<Long> workAreas = TkServiceLocator.getTkRoleService().getWorkAreasForApprover(TKContext.getTargetPrincipalId(), TKUtils.getCurrentDate());
64 for(Long workArea : workAreas) {
65 workAreaList.add(workArea.toString());
66 }
67 } else {
68 workAreaList.add(taaf.getSelectedWorkArea());
69 }
70 List<String> principalIds = TkServiceLocator.getTimeApproveService()
71 .getTimePrincipalIdsWithSearchCriteria(workAreaList, taaf.getSelectedPayCalendarGroup(),
72 new java.sql.Date(endDate.getTime()), new java.sql.Date(beginDate.getTime()), new java.sql.Date(endDate.getTime()));
73
74 List<TKPerson> persons = TkServiceLocator.getPersonService().getPersonCollection(principalIds);
75
76 if (StringUtils.equals(taaf.getSearchField(), ApprovalForm.ORDER_BY_PRINCIPAL)) {
77 for (String id : principalIds) {
78 if(StringUtils.contains(id, taaf.getSearchTerm())) {
79 Map<String, String> labelValue = new HashMap<String, String>();
80 labelValue.put("id", id);
81 labelValue.put("result", id);
82 results.add(labelValue);
83 }
84 }
85 } else if (StringUtils.equals(taaf.getSearchField(), ApprovalForm.ORDER_BY_DOCID)) {
86 Map<String, TimesheetDocumentHeader> principalDocumentHeaders =
87 TkServiceLocator.getTimeApproveService().getPrincipalDocumehtHeader(persons, beginDate, endDate);
88
89 for (Map.Entry<String,TimesheetDocumentHeader> entry : principalDocumentHeaders.entrySet()) {
90 if (StringUtils.contains(entry.getValue().getDocumentId(), taaf.getSearchTerm())) {
91 Map<String, String> labelValue = new HashMap<String, String>();
92
93 labelValue.put("id", entry.getValue().getDocumentId());
94 labelValue.put("result", entry.getValue().getPrincipalId());
95 results.add(labelValue);
96 }
97 }
98 }
99 }
100
101 taaf.setOutputString(JSONValue.toJSONString(results));
102 return mapping.findForward("ws");
103 }
104
105 public ActionForward getTimeSummary(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
106 TimeApprovalActionForm taaf = (TimeApprovalActionForm) form;
107 TimesheetDocument td = TkServiceLocator.getTimesheetService().getTimesheetDocument(taaf.getDocumentId());
108 TimeSummary ts = TkServiceLocator.getTimeSummaryService().getTimeSummary(td);
109
110 taaf.setOutputString(ts.toJsonString());
111 return mapping.findForward("ws");
112 }
113
114 }