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.detail.web;
17  
18  
19  import java.util.ArrayList;
20  import java.util.Comparator;
21  import java.util.HashSet;
22  import java.util.List;
23  import java.util.Map;
24  import java.util.Map.Entry;
25  import java.util.Set;
26  
27  import javax.servlet.http.HttpServletRequest;
28  import javax.servlet.http.HttpServletResponse;
29  
30  import org.apache.commons.lang.StringUtils;
31  import org.apache.commons.lang.time.DateUtils;
32  import org.apache.struts.action.ActionForm;
33  import org.apache.struts.action.ActionForward;
34  import org.apache.struts.action.ActionMapping;
35  import org.apache.struts.action.ActionRedirect;
36  import org.joda.time.DateTime;
37  import org.joda.time.Interval;
38  import org.kuali.hr.lm.LMConstants;
39  import org.kuali.hr.lm.accrual.AccrualCategoryRule;
40  import org.kuali.hr.lm.leaveblock.LeaveBlock;
41  import org.kuali.hr.lm.leavecalendar.LeaveCalendarDocument;
42  import org.kuali.hr.lm.leaveplan.LeavePlan;
43  import org.kuali.hr.time.base.web.TkAction;
44  import org.kuali.hr.time.calendar.Calendar;
45  import org.kuali.hr.time.calendar.CalendarEntries;
46  import org.kuali.hr.time.principal.PrincipalHRAttributes;
47  import org.kuali.hr.time.roles.TkUserRoles;
48  import org.kuali.hr.time.roles.UserRoles;
49  import org.kuali.hr.time.service.base.TkServiceLocator;
50  import org.kuali.hr.time.timesheet.TimesheetDocument;
51  import org.kuali.hr.time.util.TKContext;
52  import org.kuali.hr.time.util.TKUser;
53  import org.kuali.hr.time.util.TKUtils;
54  import org.kuali.hr.time.util.TkConstants;
55  import org.kuali.rice.kew.api.document.DocumentStatus;
56  import org.kuali.rice.krad.exception.AuthorizationException;
57  import org.kuali.rice.krad.util.GlobalVariables;
58  import org.kuali.rice.krad.util.ObjectUtils;
59  
60  import edu.emory.mathcs.backport.java.util.Collections;
61  
62  public class TimesheetSubmitAction extends TkAction {
63  
64      @Override
65      protected void checkTKAuthorization(ActionForm form, String methodToCall) throws AuthorizationException {
66          TimesheetSubmitActionForm tsaf = (TimesheetSubmitActionForm)form;
67  
68          String principal = TKContext.getPrincipalId();
69          UserRoles roles = TkUserRoles.getUserRoles(GlobalVariables.getUserSession().getPrincipalId());
70  
71          TimesheetDocument document = TkServiceLocator.getTimesheetService().getTimesheetDocument(tsaf.getDocumentId());
72          if (!roles.isDocumentWritable(document)) {
73              throw new AuthorizationException(principal, "TimesheetSubmitAction", "");
74          }
75      }
76  
77  
78  
79  
80      public ActionForward approveTimesheet(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
81          TimesheetSubmitActionForm tsaf = (TimesheetSubmitActionForm)form;
82          TimesheetDocument document = TkServiceLocator.getTimesheetService().getTimesheetDocument(tsaf.getDocumentId());
83  
84          // Switched to grab the target (chain, resolution: target -> backdoor -> actual) user.
85          // Approvals still using backdoor > actual
86          if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.ROUTE)) {
87              if (DocumentStatus.INITIATED.getCode().equals(document.getDocumentHeader().getDocumentStatus())
88                      || DocumentStatus.SAVED.getCode().equals(document.getDocumentHeader().getDocumentStatus())) {
89              	
90              	boolean nonExemptLE = TkServiceLocator.getLeaveApprovalService().isActiveAssignmentFoundOnJobFlsaStatus(document.getPrincipalId(),
91              				TkConstants.FLSA_STATUS_NON_EXEMPT, true);
92              	if(nonExemptLE) {
93              		Map<String,Set<LeaveBlock>> eligibilities = TkServiceLocator.getAccrualCategoryMaxBalanceService().getMaxBalanceViolations(document.getCalendarEntry(), document.getPrincipalId());
94              		PrincipalHRAttributes pha = TkServiceLocator.getPrincipalHRAttributeService().getPrincipalCalendar(document.getPrincipalId(), document.getCalendarEntry().getEndPeriodDate());
95  					Calendar cal = pha.getLeaveCalObj();
96  					if(cal == null) {
97  						//non exempt leave eligible employee without a leave calendar?
98  						throw new RuntimeException("Principal is without a leave calendar");
99                      }
100     				List<LeaveBlock> eligibleTransfers = new ArrayList<LeaveBlock>();
101     				List<LeaveBlock> eligiblePayouts = new ArrayList<LeaveBlock>();
102             		Interval interval = new Interval(document.getCalendarEntry().getBeginPeriodDate().getTime(), document.getCalendarEntry().getEndPeriodDate().getTime());
103 
104 	        		for(Entry<String,Set<LeaveBlock>> entry : eligibilities.entrySet()) {
105 	        			
106 	            		for(LeaveBlock lb : entry.getValue()) {
107 	            			if(interval.contains(lb.getLeaveDate().getTime())) {
108 	            				//maxBalanceViolations should, if a violation exists, return a leave block with leave date either current date, or the end period date - 1 days.
109 		        				AccrualCategoryRule aRule = TkServiceLocator.getAccrualCategoryRuleService().getAccrualCategoryRule(lb.getAccrualCategoryRuleId());
110 	
111 		            			if(ObjectUtils.isNotNull(aRule)
112 		            					&& !StringUtils.equals(aRule.getMaxBalanceActionFrequency(),LMConstants.MAX_BAL_ACTION_FREQ.ON_DEMAND)) {
113 		            				if(StringUtils.equals(aRule.getMaxBalanceActionFrequency(),LMConstants.MAX_BAL_ACTION_FREQ.YEAR_END)) {
114 		            					DateTime rollOverDate = TkServiceLocator.getLeavePlanService().getRolloverDayOfLeavePlan(pha.getLeavePlan(), document.getCalendarEntry().getBeginPeriodDate());
115 		            					//the final calendar period of the leave plan should end within this time sheet 
116 		            					if(interval.contains(rollOverDate.minusDays(1).getMillis())) {
117 		            						//only leave blocks belonging to the calendar entry being submitted may reach this point
118 		            						//if the infraction occurs before the relative end date of the leave plan year, then action will be executed.
119 			            					if(lb.getLeaveDate().before(rollOverDate.toDate())) {
120 						            			if(StringUtils.equals(aRule.getActionAtMaxBalance(),LMConstants.ACTION_AT_MAX_BAL.PAYOUT)) {
121 						            				eligiblePayouts.add(lb);
122 						            			}
123 						            			else if(StringUtils.equals(aRule.getActionAtMaxBalance(), LMConstants.ACTION_AT_MAX_BAL.TRANSFER)
124 						            					|| StringUtils.equals(aRule.getActionAtMaxBalance(), LMConstants.ACTION_AT_MAX_BAL.LOSE)) {
125 						            				eligibleTransfers.add(lb);
126 						            			}
127 			            					}
128 		            					}
129 		            				}
130 		            				if(StringUtils.equals(aRule.getMaxBalanceActionFrequency(),LMConstants.MAX_BAL_ACTION_FREQ.LEAVE_APPROVE)) {
131 		            					//a leave period should end within the time period.
132 		            					CalendarEntries leaveEntry = TkServiceLocator.getCalendarEntriesService().getCurrentCalendarEntriesByCalendarId(cal.getHrCalendarId(), lb.getLeaveDate());
133 		            					if(ObjectUtils.isNotNull(leaveEntry)) {
134 		            						//only leave blocks belonging to the calendar entry being submitted may reach this point.
135 		            						//if the infraction occurs before the end of the leave calendar entry, then action will be executed.
136 			            					if(interval.contains(DateUtils.addDays(leaveEntry.getEndPeriodDate(),-1).getTime())) {
137 
138 						            			if(StringUtils.equals(aRule.getActionAtMaxBalance(),LMConstants.ACTION_AT_MAX_BAL.PAYOUT)) {
139 						            				eligiblePayouts.add(lb);
140 						            			}
141 						            			else if(StringUtils.equals(aRule.getActionAtMaxBalance(), LMConstants.ACTION_AT_MAX_BAL.TRANSFER)
142 						            					|| StringUtils.equals(aRule.getActionAtMaxBalance(), LMConstants.ACTION_AT_MAX_BAL.LOSE)) {
143 						            				eligibleTransfers.add(lb);
144 						            			}
145 			            					}
146 		            					}
147 		            				}
148 		            			}
149 	            			}
150 	            		}
151 	        		}
152             		ActionRedirect transferRedirect = new ActionRedirect();
153             		ActionRedirect payoutRedirect = new ActionRedirect();
154             		if(!eligibleTransfers.isEmpty()) {
155                 		transferRedirect.setPath("/BalanceTransfer.do?"+request.getQueryString());
156                 		request.getSession().setAttribute("eligibilities", eligibleTransfers);
157                 		return transferRedirect;
158             		}
159             		if(!eligiblePayouts.isEmpty()) {
160                 		payoutRedirect.setPath("/LeavePayout.do?"+request.getQueryString());
161                 		request.getSession().setAttribute("eligibilities", eligiblePayouts);
162                 		return payoutRedirect;           			
163             		}
164             	}
165                 TkServiceLocator.getTimesheetService().routeTimesheet(TKContext.getTargetPrincipalId(), document);
166             }
167         } else if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.APPROVE)) {
168         	if(TkServiceLocator.getTimesheetService().isReadyToApprove(document)) {
169 	            if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
170 	                TkServiceLocator.getTimesheetService().approveTimesheet(TKContext.getPrincipalId(), document);
171 	            }
172         	} else {
173         		//ERROR!!!
174         	}
175         } else if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.DISAPPROVE)) {
176             if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
177                 TkServiceLocator.getTimesheetService().disapproveTimesheet(TKContext.getPrincipalId(), document);
178             }
179         }
180         
181         TkServiceLocator.getTkSearchableAttributeService().updateSearchableAttribute(document, document.getAsOfDate());
182         ActionRedirect rd = new ActionRedirect(mapping.findForward("timesheetRedirect"));
183         rd.addParameter("documentId", tsaf.getDocumentId());
184 
185         return rd;
186     }
187 
188     public ActionForward approveApprovalTab(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
189     	TimesheetSubmitActionForm tsaf = (TimesheetSubmitActionForm)form;
190         TimesheetDocument document = TkServiceLocator.getTimesheetService().getTimesheetDocument(tsaf.getDocumentId());
191 
192         // Switched to grab the target (chain, resolution: target -> backdoor -> actual) user.
193         // Approvals still using backdoor > actual
194         if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.ROUTE)) {
195             if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.INITIATED.getCode())) {
196                 TkServiceLocator.getTimesheetService().routeTimesheet(TKContext.getTargetPrincipalId(), document);
197             }
198         } else if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.APPROVE)) {
199         	if(TkServiceLocator.getTimesheetService().isReadyToApprove(document)) {
200 	            if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
201 	                TkServiceLocator.getTimesheetService().approveTimesheet(TKContext.getPrincipalId(), document);
202 	            }
203         	} else {
204         		//ERROR!!!
205         	}
206         } else if (StringUtils.equals(tsaf.getAction(), TkConstants.DOCUMENT_ACTIONS.DISAPPROVE)) {
207             if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
208                 TkServiceLocator.getTimesheetService().disapproveTimesheet(TKContext.getPrincipalId(), document);
209             }
210         }
211         TKUser.clearTargetUser();
212         return new ActionRedirect(mapping.findForward("approverRedirect"));
213 
214 
215     }
216 }