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.lm.leavepayout.validation;
17  
18  import java.math.BigDecimal;
19  import java.sql.Date;
20  import java.util.List;
21  
22  import org.apache.commons.lang.StringUtils;
23  import org.kuali.hr.lm.LMConstants;
24  import org.kuali.hr.lm.accrual.AccrualCategory;
25  import org.kuali.hr.lm.accrual.AccrualCategoryRule;
26  import org.kuali.hr.lm.leavepayout.LeavePayout;
27  import org.kuali.hr.lm.employeeoverride.EmployeeOverride;
28  import org.kuali.hr.time.principal.PrincipalHRAttributes;
29  import org.kuali.hr.time.service.base.TkServiceLocator;
30  import org.kuali.hr.time.util.TKUtils;
31  import org.kuali.hr.time.util.TkConstants;
32  import org.kuali.rice.krad.util.GlobalVariables;
33  import org.kuali.rice.krad.util.ObjectUtils;
34  
35  public class LeavePayoutValidationUtils {
36  
37  	public static boolean validateTransfer(LeavePayout leavePayout) {
38  		boolean isValid = true;
39  		String principalId = leavePayout.getPrincipalId();
40  		Date effectiveDate = leavePayout.getEffectiveDate();
41  		String fromAccrualCategory = leavePayout.getFromAccrualCategory();
42  		String payoutEarnCode = leavePayout.getEarnCode();
43  		AccrualCategory fromCat = TkServiceLocator.getAccrualCategoryService().getAccrualCategory(fromAccrualCategory, effectiveDate);
44  		AccrualCategory toCat = TkServiceLocator.getAccrualCategoryService().getAccrualCategory(payoutEarnCode, effectiveDate);
45  		PrincipalHRAttributes pha = TkServiceLocator.getPrincipalHRAttributeService().getPrincipalCalendar(principalId,effectiveDate);
46  		
47  		if(ObjectUtils.isNotNull(pha)) {
48  			if(ObjectUtils.isNotNull(pha.getLeavePlan())) {
49  				AccrualCategoryRule acr = TkServiceLocator.getAccrualCategoryRuleService().getAccrualCategoryRuleForDate(fromCat, effectiveDate, pha.getServiceDate());
50  				if(ObjectUtils.isNotNull(acr)) {
51  					if(ObjectUtils.isNotNull(acr.getMaxBalFlag())
52  							&& StringUtils.isNotBlank(acr.getMaxBalFlag())
53  							&& StringUtils.isNotEmpty(acr.getMaxBalFlag())
54  							&& StringUtils.equals(acr.getMaxBalFlag(), "Y")) {
55  						if(ObjectUtils.isNotNull(acr.getMaxPayoutEarnCode()) || StringUtils.equals(LMConstants.ACTION_AT_MAX_BAL.LOSE, acr.getActionAtMaxBalance())) {
56  /*							isValid &= validatePrincipal(pha,principalId);
57  							isValid &= validateEffectiveDate(effectiveDate);
58  							isValid &= validateAgainstLeavePlan(pha,fromCat,toCat,effectiveDate);
59  							isValid &= validateTransferFromAccrualCategory(fromCat,principalId,effectiveDate,acr);
60  							isValid &= validateTransferToAccrualCategory(toCat,principalId,effectiveDate,acr);*/
61  							isValid &= validatePayoutAmount(leavePayout.getPayoutAmount(),fromCat,toCat, principalId, effectiveDate, acr);
62  						}
63  						else {
64  							//should never be the case if accrual category rules are validated correctly.
65  							GlobalVariables.getMessageMap().putError("document.newMaintainableObject.fromAccrualCategory",
66  									"leavePayout.fromAccrualCategory.rules.payoutToEarnCode",
67  									fromAccrualCategory);
68  							isValid &= false;
69  						}
70  					}
71  					else {
72  						//max bal flag null, blank, empty, or "N"
73  						GlobalVariables.getMessageMap().putError("document.newMaintinableObject.fromAccrualCategory",
74  								"leavePayout.fromAccrualCategory.rules.maxBalFlag", fromAccrualCategory);
75  						isValid &= false;
76  					}
77  				}
78  				else {
79  					//department admins must validate amount to transfer does not exceed current balance.
80  					GlobalVariables.getMessageMap().putError("document.newMaintainableObject.fromAccrualCategory",
81  							"leavePayout.fromAccrualCategory.rules.exist",fromCat.getAccrualCategory());
82  					isValid &= false;
83  				}
84  			}
85  			else {
86  				//if the principal doesn't have a leave plan, there aren't any accrual categories that can be debited/credited.
87  				GlobalVariables.getMessageMap().putError("document.newMaintainableObject.principalId","leavePayout.principal.noLeavePlan");
88  				isValid &=false;
89  			}
90  		}
91  		else  {
92  			//if the principal has no principal hr attributes, they're not a principal.
93  			GlobalVariables.getMessageMap().putError("document.newMaintainableObject.principalId","leavePayout.principal.noAttributes");
94  			isValid &= false;
95  		}
96  /*		}*/
97  		return isValid;
98  
99  	}
100 
101 	private static boolean validatePayoutAmount(BigDecimal payoutAmount,
102 			AccrualCategory fromCat, AccrualCategory toCat, String principalId,
103 			Date effectiveDate, AccrualCategoryRule accrualRule) {
104 
105 		//transfer amount must be less than the max transfer amount defined in the accrual category rule.
106 		//it cannot be negative.
107 		boolean isValid = true;
108 		BigDecimal maxPayoutAmount = null;
109 		BigDecimal adjustedMaxPayoutAmount = null;
110 		if(ObjectUtils.isNotNull(accrualRule.getMaxPayoutAmount())) {
111 			maxPayoutAmount = new BigDecimal(accrualRule.getMaxPayoutAmount());
112 			BigDecimal fullTimeEngagement = TkServiceLocator.getJobService().getFteSumForAllActiveLeaveEligibleJobs(principalId, effectiveDate);
113 			adjustedMaxPayoutAmount = maxPayoutAmount.multiply(fullTimeEngagement);
114 		}
115 		
116 		//use override if one exists.
117 		List<EmployeeOverride> overrides = TkServiceLocator.getEmployeeOverrideService().getEmployeeOverrides(principalId, effectiveDate);
118 		for(EmployeeOverride override : overrides) {
119 			if(override.getOverrideType().equals(TkConstants.EMPLOYEE_OVERRIDE_TYPE.get("MPA")))
120 				adjustedMaxPayoutAmount = new BigDecimal(override.getOverrideValue());
121 		}
122 				
123 		if(ObjectUtils.isNotNull(adjustedMaxPayoutAmount)) {
124 			if(payoutAmount.compareTo(adjustedMaxPayoutAmount) > 0) {
125 				isValid &= false;
126 				String fromUnitOfTime = TkConstants.UNIT_OF_TIME.get(fromCat.getUnitOfTime());
127 				GlobalVariables.getMessageMap().putError("leavePayout.payoutAmount","leavePayout.payoutAmount.maxPayoutAmount",adjustedMaxPayoutAmount.toString(),fromUnitOfTime);
128 			}
129 		}
130 		// check for a positive amount.
131 		if(payoutAmount.compareTo(BigDecimal.ZERO) < 0 ) {
132 			isValid &= false;
133 			GlobalVariables.getMessageMap().putError("leavePayout.payoutAmount","leavePayout.payoutAmount.negative");
134 		}
135 		return isValid;
136 	}
137 
138 	
139 }