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.calendar;
17  
18  import java.math.BigDecimal;
19  
20  import org.apache.commons.lang.StringUtils;
21  import org.joda.time.DateTime;
22  import org.kuali.hr.lm.LMConstants;
23  import org.kuali.hr.lm.leaveblock.LeaveBlock;
24  import org.kuali.hr.time.service.base.TkServiceLocator;
25  import org.kuali.hr.time.util.TkConstants;
26  import org.kuali.rice.krad.util.ObjectUtils;
27  
28  import static org.kuali.hr.time.service.base.TkServiceLocator.*;
29  
30  public class LeaveBlockRenderer {
31      private LeaveBlock leaveBlock;
32      private String assignmentClass;
33      //private boolean readOnly;
34  
35      public  LeaveBlockRenderer(LeaveBlock leaveBlock) {
36          this.leaveBlock = leaveBlock;
37      }
38   
39      public LeaveBlock getLeaveBlock() {
40          return leaveBlock;
41      }
42  
43      public BigDecimal getHours() {
44          return leaveBlock.getLeaveAmount();
45      }
46  
47      public String getEarnCode() {
48          return leaveBlock.getEarnCode();
49      }
50  
51      public String getLeaveBlockId() {
52          return leaveBlock.getLmLeaveBlockId();
53      }
54  
55      public String getDocumentId() {
56          return leaveBlock.getDocumentId();
57      }
58  
59  	public String getAssignmentTitle() {
60  		return leaveBlock.getAssignmentTitle();
61  	}
62  
63      public boolean getEditable() {
64          return leaveBlock.isEditable();
65      }
66  
67      public boolean getDeletable() {
68          return leaveBlock.isDeletable();
69      }
70  
71  	public String getAssignmentClass() {
72  		return assignmentClass;
73  	}
74  
75  	public void setAssignmentClass(String assignmentClass) {
76  		this.assignmentClass = assignmentClass;
77  	}
78  
79      public String getRequestStatusClass() {
80          return this.leaveBlock.getRequestStatusString().toLowerCase();
81      }
82  
83      public String getLeaveBlockDetails() {
84          if (this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.ACCRUAL_SERVICE)) {
85  //            return "accrual";
86          	if(ObjectUtils.isNotNull(leaveBlock.getScheduleTimeOffId()))
87          		return TkServiceLocator.getSysSchTimeOffService().getSystemScheduledTimeOff(this.leaveBlock.getScheduleTimeOffId()).getDescr();
88          	else
89          		return "accrual";
90          }
91          else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.CARRY_OVER_ADJUSTMENT)) {
92          	if(this.leaveBlock.getDescription().equals(LMConstants.MAX_CARRY_OVER_ADJUSTMENT))
93          		return "carryover adjustment";
94          	else
95          		return "adjustment";
96          }
97          else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.BALANCE_TRANSFER)) {
98          	if(this.leaveBlock.getDescription().contains("Forfeited"))
99          		return "transfer forfeiture";
100         	else if(this.leaveBlock.getDescription().contains("Amount transferred"))
101         		return "amount transferred";
102         	else if(this.leaveBlock.getDescription().contains("Transferred amount"))
103         		return "transferred amount";
104         	else
105         		return "balance transfer";
106         }
107         else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.LEAVE_PAYOUT)) {
108         	if(this.leaveBlock.getDescription().contains("Forfeited"))
109         		return "payout forfeiture";
110         	else if(this.leaveBlock.getDescription().contains("Amount paid out"))
111         		return "amount paid out";
112         	else if(this.leaveBlock.getDescription().contains("Payout amount"))
113         		return "payout amount";
114         	else
115         		return "leave payout";
116         }
117         else
118         	if(!this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.LEAVE_CALENDAR) &&
119         			!this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.TIME_CALENDAR))
120         		return LMConstants.LEAVE_BLOCK_TYPE_MAP.get(this.leaveBlock.getLeaveBlockType()).toLowerCase();
121         	else
122         		return getRequestStatusClass();
123         
124     }
125     
126     public String getDescription() {
127     	return leaveBlock.getDescription();
128     }
129 
130        
131     public String getTimeRange() {
132         StringBuilder b = new StringBuilder();
133 
134         if(leaveBlock.getBeginTimestamp() != null && leaveBlock.getEndTimestamp() != null) {
135         	String earnCodeType = TkServiceLocator.getEarnCodeService().getEarnCodeType(leaveBlock.getEarnCode(), new java.sql.Date(leaveBlock.getBeginTimestamp().getTime()));
136         	if(StringUtils.equals(earnCodeType, TkConstants.EARN_CODE_TIME)) {
137 	        	DateTime start = new DateTime(leaveBlock.getBeginTimestamp().getTime());
138 	        	DateTime end = new DateTime(leaveBlock.getEndTimestamp().getTime());
139 	            b.append(start.toString(TkConstants.DT_BASIC_TIME_FORMAT));
140 	            b.append(" - ");
141 	            b.append(end.toString(TkConstants.DT_BASIC_TIME_FORMAT));
142         	}
143         }
144         return b.toString();
145     }
146 }