1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.tklm.leave.calendar.web;
17
18 import java.util.ArrayList;
19 import java.util.List;
20 import java.util.Map;
21 import java.util.Map.Entry;
22 import java.util.Set;
23
24 import javax.servlet.http.HttpServletRequest;
25 import javax.servlet.http.HttpServletResponse;
26
27 import org.apache.commons.lang.StringUtils;
28 import org.apache.struts.action.ActionForm;
29 import org.apache.struts.action.ActionForward;
30 import org.apache.struts.action.ActionMapping;
31 import org.apache.struts.action.ActionRedirect;
32 import org.joda.time.Interval;
33 import org.kuali.kpme.core.accrualcategory.rule.AccrualCategoryRule;
34 import org.kuali.kpme.core.principal.PrincipalHRAttributes;
35 import org.kuali.kpme.core.service.HrServiceLocator;
36 import org.kuali.kpme.core.util.HrConstants;
37 import org.kuali.kpme.core.util.HrContext;
38 import org.kuali.kpme.core.web.KPMEAction;
39 import org.kuali.kpme.tklm.leave.block.LeaveBlock;
40 import org.kuali.kpme.tklm.leave.calendar.LeaveCalendarDocument;
41 import org.kuali.kpme.tklm.leave.service.LmServiceLocator;
42 import org.kuali.kpme.tklm.time.service.TkServiceLocator;
43 import org.kuali.rice.kew.api.document.DocumentStatus;
44 import org.kuali.rice.krad.exception.AuthorizationException;
45 import org.kuali.rice.krad.util.GlobalVariables;
46 import org.kuali.rice.krad.util.ObjectUtils;
47
48
49 public class LeaveCalendarSubmitAction extends KPMEAction {
50 @Override
51 protected void checkTKAuthorization(ActionForm form, String methodToCall) throws AuthorizationException {
52 LeaveCalendarSubmitForm lcf = (LeaveCalendarSubmitForm) form;
53
54 String principalId = GlobalVariables.getUserSession().getPrincipalId();
55 String documentId = lcf.getDocumentId();
56 LeaveCalendarDocument lcd = LmServiceLocator.getLeaveCalendarService().getLeaveCalendarDocument(documentId);
57 if (!HrServiceLocator.getHRPermissionService().canEditCalendarDocument(principalId, lcd)) {
58 throw new AuthorizationException(principalId, "LeaveCalendarSubmitAction", "");
59 }
60 }
61
62 public ActionForward approveLeaveCalendar(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
63 String documentId = request.getParameter("documentId");
64 String action = request.getParameter("action");
65 LeaveCalendarDocument document = LmServiceLocator.getLeaveCalendarService().getLeaveCalendarDocument(documentId);
66
67
68
69 if (StringUtils.equals(action, HrConstants.DOCUMENT_ACTIONS.ROUTE)) {
70 if (DocumentStatus.INITIATED.getCode().equals(document.getDocumentHeader().getDocumentStatus())
71 || DocumentStatus.SAVED.getCode().equals(document.getDocumentHeader().getDocumentStatus())) {
72
73 Map<String,Set<LeaveBlock>> eligibilities = LmServiceLocator.getAccrualCategoryMaxBalanceService().getMaxBalanceViolations(document.getCalendarEntry(), document.getPrincipalId());
74
75 ActionRedirect transferRedirect = new ActionRedirect();
76 ActionRedirect payoutRedirect = new ActionRedirect();
77
78 List<LeaveBlock> eligibleTransfers = new ArrayList<LeaveBlock>();
79 List<LeaveBlock> eligiblePayouts = new ArrayList<LeaveBlock>();
80 Interval interval = new Interval(document.getCalendarEntry().getBeginPeriodDate().getTime(), document.getCalendarEntry().getEndPeriodDate().getTime());
81 for(Entry<String,Set<LeaveBlock>> entry : eligibilities.entrySet()) {
82
83 for(LeaveBlock lb : entry.getValue()) {
84 if(interval.contains(lb.getLeaveDate().getTime())) {
85
86 PrincipalHRAttributes pha = HrServiceLocator.getPrincipalHRAttributeService().getPrincipalCalendar(document.getPrincipalId(), lb.getLeaveLocalDate());
87 AccrualCategoryRule aRule = lb.getAccrualCategoryRule();
88
89 if(ObjectUtils.isNotNull(aRule)
90 && !StringUtils.equals(aRule.getMaxBalanceActionFrequency(),HrConstants.MAX_BAL_ACTION_FREQ.ON_DEMAND)) {
91 if(StringUtils.equals(aRule.getMaxBalanceActionFrequency(),HrConstants.MAX_BAL_ACTION_FREQ.LEAVE_APPROVE)
92 || (StringUtils.equals(aRule.getMaxBalanceActionFrequency(),HrConstants.MAX_BAL_ACTION_FREQ.YEAR_END)
93 && HrServiceLocator.getLeavePlanService().isLastCalendarPeriodOfLeavePlan(document.getCalendarEntry(),pha.getLeavePlan(),lb.getLeaveLocalDate())))
94 if(StringUtils.equals(aRule.getActionAtMaxBalance(),HrConstants.ACTION_AT_MAX_BALANCE.PAYOUT)) {
95 eligiblePayouts.add(lb);
96 }
97 else if(StringUtils.equals(aRule.getActionAtMaxBalance(), HrConstants.ACTION_AT_MAX_BALANCE.TRANSFER)
98 || StringUtils.equals(aRule.getActionAtMaxBalance(), HrConstants.ACTION_AT_MAX_BALANCE.LOSE)) {
99 eligibleTransfers.add(lb);
100 }
101 }
102 }
103 }
104 }
105 if(!eligibleTransfers.isEmpty()) {
106
107 transferRedirect.setPath("/BalanceTransfer.do?"+request.getQueryString());
108 request.getSession().setAttribute("eligibilities", eligibleTransfers);
109 return transferRedirect;
110 }
111 if(!eligiblePayouts.isEmpty()) {
112 payoutRedirect.setPath("/LeavePayout.do?"+request.getQueryString());
113 request.getSession().setAttribute("eligibilities", eligiblePayouts);
114 return payoutRedirect;
115 }
116 LmServiceLocator.getLeaveCalendarService().routeLeaveCalendar(HrContext.getTargetPrincipalId(), document);
117 }
118 } else if (StringUtils.equals(action, HrConstants.DOCUMENT_ACTIONS.APPROVE)) {
119 if (LmServiceLocator.getLeaveCalendarService().isReadyToApprove(document)) {
120 if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
121 LmServiceLocator.getLeaveCalendarService().approveLeaveCalendar(HrContext.getPrincipalId(), document);
122 }
123 } else {
124
125 }
126 } else if (StringUtils.equals(action, HrConstants.DOCUMENT_ACTIONS.DISAPPROVE)) {
127 if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
128 LmServiceLocator.getLeaveCalendarService().disapproveLeaveCalendar(HrContext.getPrincipalId(), document);
129 }
130 }
131 ActionRedirect rd = new ActionRedirect(mapping.findForward("leaveCalendarRedirect"));
132 TkServiceLocator.getTkSearchableAttributeService().updateSearchableAttribute(document, document.getAsOfDate());
133 rd.addParameter("documentId", documentId);
134
135 return rd;
136 }
137
138 public ActionForward approveApprovalTab(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
139 LeaveCalendarSubmitForm lcf = (LeaveCalendarSubmitForm)form;
140 LeaveCalendarDocument document = LmServiceLocator.getLeaveCalendarService().getLeaveCalendarDocument(lcf.getDocumentId());
141
142
143
144 if (StringUtils.equals(lcf.getAction(), HrConstants.DOCUMENT_ACTIONS.ROUTE)) {
145 if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.INITIATED.getCode())) {
146 LmServiceLocator.getLeaveCalendarService().routeLeaveCalendar(HrContext.getTargetPrincipalId(), document);
147 }
148 } else if (StringUtils.equals(lcf.getAction(), HrConstants.DOCUMENT_ACTIONS.APPROVE)) {
149
150 if (LmServiceLocator.getLeaveCalendarService().isReadyToApprove(document)) {
151 if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
152 LmServiceLocator.getLeaveCalendarService().approveLeaveCalendar(HrContext.getPrincipalId(), document);
153 }
154 } else {
155
156 }
157
158 } else if (StringUtils.equals(lcf.getAction(), HrConstants.DOCUMENT_ACTIONS.DISAPPROVE)) {
159 if (document.getDocumentHeader().getDocumentStatus().equals(DocumentStatus.ENROUTE.getCode())) {
160 LmServiceLocator.getLeaveCalendarService().disapproveLeaveCalendar(HrContext.getPrincipalId(), document);
161 }
162 }
163
164 HrContext.clearTargetUser();
165 return new ActionRedirect(mapping.findForward("approverRedirect"));
166
167 }
168
169 }