1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.tklm.leave.block;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.joda.time.DateTime;
20 import org.kuali.kpme.core.service.HrServiceLocator;
21 import org.kuali.kpme.core.util.HrConstants;
22 import org.kuali.kpme.core.util.HrContext;
23 import org.kuali.kpme.tklm.api.common.TkConstants;
24 import org.kuali.kpme.tklm.api.leave.block.LeaveBlock;
25 import org.kuali.kpme.tklm.api.leave.block.LeaveBlockContract;
26 import org.kuali.kpme.tklm.api.leave.block.LeaveBlockRendererContract;
27 import org.kuali.kpme.tklm.common.LMConstants;
28 import org.kuali.kpme.tklm.leave.service.LmServiceLocator;
29 import org.kuali.rice.krad.util.ObjectUtils;
30
31 import java.math.BigDecimal;
32
33 public class LeaveBlockRenderer implements LeaveBlockRendererContract {
34 private LeaveBlock leaveBlock;
35 private String assignmentClass;
36
37
38 public LeaveBlockRenderer(LeaveBlock leaveBlock) {
39 this.leaveBlock = leaveBlock;
40 }
41
42 public LeaveBlockContract getLeaveBlock() {
43 return leaveBlock;
44 }
45
46 public BigDecimal getHours() {
47 return leaveBlock.getLeaveAmount();
48 }
49
50 public String getEarnCode() {
51 return leaveBlock.getEarnCode();
52 }
53
54 public String getLeaveBlockId() {
55 return leaveBlock.getLmLeaveBlockId();
56 }
57
58 public String getDocumentId() {
59 return leaveBlock.getDocumentId();
60 }
61
62 public String getAssignmentTitle() {
63 return leaveBlock.getAssignmentTitle();
64 }
65
66 public boolean isEditable() {
67 return LmServiceLocator.getLMPermissionService().canEditLeaveBlock(HrContext.getPrincipalId(), leaveBlock);
68 }
69
70 public boolean isDeletable() {
71 return LmServiceLocator.getLMPermissionService().canDeleteLeaveBlock(HrContext.getPrincipalId(), leaveBlock);
72 }
73
74 public String getAssignmentClass() {
75 return assignmentClass;
76 }
77
78 public void setAssignmentClass(String assignmentClass) {
79 this.assignmentClass = assignmentClass;
80 }
81
82 public String getRequestStatusClass() {
83 return this.leaveBlock.getRequestStatusString().toLowerCase();
84 }
85
86 public String getLeaveBlockDetails() {
87 if (this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.ACCRUAL_SERVICE)) {
88
89 if(ObjectUtils.isNotNull(leaveBlock.getScheduleTimeOffId()))
90 return LmServiceLocator.getSysSchTimeOffService().getSystemScheduledTimeOff(this.leaveBlock.getScheduleTimeOffId()).getDescr();
91 else
92 return "accrual";
93 }
94 else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.CARRY_OVER_ADJUSTMENT)) {
95 if(this.leaveBlock.getDescription().equals(LMConstants.MAX_CARRY_OVER_ADJUSTMENT))
96 return "carryover adjustment";
97 else
98 return "adjustment";
99 }
100 else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.BALANCE_TRANSFER)) {
101 if(this.leaveBlock.getDescription().contains("Forfeited"))
102 return "transfer forfeiture";
103 else if(this.leaveBlock.getDescription().contains("Amount transferred"))
104 return "amount transferred";
105 else if(this.leaveBlock.getDescription().contains("Transferred amount"))
106 return "transferred amount";
107 else
108 return "balance transfer";
109 }
110 else if(this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.LEAVE_PAYOUT)) {
111 if(this.leaveBlock.getDescription().contains("Forfeited"))
112 return "payout forfeiture";
113 else if(this.leaveBlock.getDescription().contains("Amount paid out"))
114 return "amount paid out";
115 else if(this.leaveBlock.getDescription().contains("Payout amount"))
116 return "payout amount";
117 else
118 return "leave payout";
119 }
120 else
121 if(!this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.LEAVE_CALENDAR) &&
122 !this.leaveBlock.getLeaveBlockType().equals(LMConstants.LEAVE_BLOCK_TYPE.TIME_CALENDAR))
123 return LMConstants.LEAVE_BLOCK_TYPE_MAP.get(this.leaveBlock.getLeaveBlockType()).toLowerCase();
124 else
125 return getRequestStatusClass();
126
127 }
128
129 public String getDescription() {
130 return leaveBlock.getDescription();
131 }
132
133
134 public String getTimeRange() {
135 StringBuilder b = new StringBuilder();
136
137 if(leaveBlock.getBeginDateTime() != null && leaveBlock.getEndDateTime() != null) {
138 String earnCodeType = HrServiceLocator.getEarnCodeService().getEarnCodeType(leaveBlock.getEarnCode(), leaveBlock.getBeginDateTime().toLocalDate());
139 if(StringUtils.equals(earnCodeType, HrConstants.EARN_CODE_TIME)) {
140 DateTime start = leaveBlock.getBeginDateTime();
141 DateTime end = leaveBlock.getEndDateTime();
142 b.append(start.toString(TkConstants.DT_BASIC_TIME_FORMAT));
143 b.append(" - ");
144 b.append(end.toString(TkConstants.DT_BASIC_TIME_FORMAT));
145 }
146 }
147 return b.toString();
148 }
149 }