View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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       * Action called via AJAX. (ajaj really...)
48       * <p/>
49       * This search returns quick-results to the search box for the user to further
50       * refine upon. The end value can then be form submitted.
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              //the endDate we get here is coming from approval.js and is extracted from html. we need to add a day to cover the last day in the pay period.
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) {    //taaf.getWorkAreaDescr().keySet()
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  //                        labelValue.put("id", entry.getValue().getDocumentId() + " (" + entry.getValue().getPrincipalId() + ")");
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 }