1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.tklm.time.missedpunch;
17
18 import org.apache.commons.collections.CollectionUtils;
19 import org.apache.commons.lang.StringUtils;
20 import org.joda.time.DateTime;
21 import org.joda.time.LocalDate;
22 import org.kuali.kpme.core.api.assignment.Assignment;
23 import org.kuali.kpme.core.api.util.KpmeUtils;
24 import org.kuali.kpme.core.service.HrServiceLocator;
25 import org.kuali.kpme.core.util.HrContext;
26 import org.kuali.kpme.core.util.TKUtils;
27 import org.kuali.kpme.tklm.api.common.TkConstants;
28 import org.kuali.kpme.tklm.time.missedpunch.web.MissedPunchForm;
29 import org.kuali.kpme.tklm.time.rules.timecollection.TimeCollectionRule;
30 import org.kuali.kpme.tklm.time.service.TkServiceLocator;
31 import org.kuali.kpme.tklm.time.timesheet.TimesheetDocument;
32 import org.kuali.rice.core.api.config.property.ConfigContext;
33 import org.kuali.rice.core.api.util.ConcreteKeyValue;
34 import org.kuali.rice.core.api.util.KeyValue;
35 import org.kuali.rice.core.api.util.Truth;
36 import org.kuali.rice.krad.uif.control.UifKeyValuesFinderBase;
37 import org.kuali.rice.krad.uif.view.ViewModel;
38
39 import java.util.ArrayList;
40 import java.util.Collections;
41 import java.util.List;
42
43 public class MissedPunchAssignmentKeyValuesFinder extends UifKeyValuesFinderBase {
44
45 private static final long serialVersionUID = -6828936184460318588L;
46
47 @Override
48 public List<KeyValue> getKeyValues(ViewModel model) {
49 List<KeyValue> labels = new ArrayList<KeyValue>();
50
51 if (model instanceof MissedPunchForm) {
52 MissedPunchForm missedPunchForm = (MissedPunchForm) model;
53 MissedPunchDocument missedPunchDocument = (MissedPunchDocument) missedPunchForm.getDocument();
54 MissedPunchBo mp = missedPunchDocument == null ? missedPunchForm.getMissedPunch() : missedPunchDocument.getMissedPunch();
55 LocalDate mpDate = mp.getLocalDate();
56 if(mpDate == null) {
57 mpDate = mp.getActionLocalDate();
58 if (mpDate == null) {
59 mpDate = LocalDate.now();
60 }
61 }
62 String timesheetDocumentId = missedPunchDocument != null ? missedPunchDocument.getMissedPunch().getTimesheetDocumentId() : missedPunchForm.getMissedPunch().getTimesheetDocumentId();
63 if (StringUtils.isNotBlank(timesheetDocumentId)) {
64 TimesheetDocument timesheetDocument = TkServiceLocator.getTimesheetService().getTimesheetDocument(timesheetDocumentId);
65
66 List<Assignment> dayAssignments = KpmeUtils.getUniqueAssignments(HrServiceLocator.getAssignmentService().getAssignmentHistoryBetweenDays(timesheetDocument.getPrincipalId(), mpDate, mpDate));
67 List<Assignment> assignments = new ArrayList<Assignment>();
68 if (CollectionUtils.isNotEmpty(dayAssignments)) {
69 for (Assignment assignment : dayAssignments) {
70
71 TimeCollectionRule tcr = null;
72 if (assignment.getJob() != null) {
73 tcr = TkServiceLocator.getTimeCollectionRuleService().getTimeCollectionRule(assignment.getJob().getDept(), assignment.getWorkArea(), assignment.getJob().getHrPayType(), assignment.getGroupKeyCode(), mpDate);
74 }
75 boolean isSynchronous = tcr == null || tcr.isClockUserFl();
76 if (isSynchronous) {
77 assignments.add(assignment);
78 }
79 }
80 }
81
82 if (CollectionUtils.isEmpty(assignments)) {
83 assignments = Collections.emptyList();
84 }
85
86 if(missedPunchForm.getIpAddress()!=null){
87 String ipAddress = TKUtils.getIPAddressFromRequest(missedPunchForm.getIpAddress());
88
89
90 String targetPrincipalId = HrContext.getTargetPrincipalId();
91 String principalId = HrContext.getPrincipalId();
92 if(targetPrincipalId.equals(principalId)){
93 DateTime currentDateTime = new DateTime();
94
95 Boolean limitMPAssignmentsFromInvalidLocation = Truth.strToBooleanIgnoreCase(ConfigContext.getCurrentContextConfig().getProperty(TkConstants.LIMIT_MP_ASSIGN_FROM_INVALIDLOCATION), false);
96
97 for (Assignment assignment : assignments) {
98
99
100 if(limitMPAssignmentsFromInvalidLocation) {
101 boolean isInvalid = TkServiceLocator.getClockLocationRuleService().isInvalidIPClockLocation(assignment.getGroupKeyCode(), assignment.getDept(), assignment.getWorkArea(), assignment.getPrincipalId(), assignment.getJobNumber(), ipAddress, currentDateTime.toLocalDate());
102 if(!isInvalid){
103 labels.add(new ConcreteKeyValue(assignment.getAssignmentKey(),assignment.getAssignmentDescription()));
104 }
105 } else {
106 labels.add(new ConcreteKeyValue(assignment.getAssignmentKey(),assignment.getAssignmentDescription()));
107 }
108 }
109 }else{
110 for (Assignment assignment : assignments) {
111 labels.add(new ConcreteKeyValue(assignment.getAssignmentKey(),assignment.getAssignmentDescription()));
112 }
113 }
114 }else{
115 if (CollectionUtils.isNotEmpty(assignments)) {
116 for (Assignment assignment : assignments) {
117 labels.add(new ConcreteKeyValue(assignment.getAssignmentKey(), assignment.getAssignmentDescription()));
118 }
119 }
120 }
121 }
122 }
123 if(labels.size()>1){
124 List<KeyValue> newLables = new ArrayList<KeyValue>();
125 newLables.add(new ConcreteKeyValue("", ""));
126 newLables.addAll(labels);
127 labels = newLables;
128 }
129 if(labels.size()==0){
130 labels.add(new ConcreteKeyValue("", "--- No asssignments for date ---"));
131 }
132 return labels;
133 }
134
135 }