View Javadoc
1   /**
2    * Copyright 2004-2014 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.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  					//Map<String, String> assignmentDescMap = timesheetDocument.getAssignmentDescriptions(true, mpDate);
90  					String targetPrincipalId = HrContext.getTargetPrincipalId(); 	            
91  					String principalId = HrContext.getPrincipalId();
92  					if(targetPrincipalId.equals(principalId)){
93  						DateTime currentDateTime = new DateTime();
94                          //Boolean allowActionFromInvalidLocation = Truth.strToBooleanIgnoreCase(ConfigContext.getCurrentContextConfig().getProperty(TkConstants.ALLOW_CLOCKING_EMPLOYEE_FROM_INVALID_LOCATION), false);
95                          Boolean limitMPAssignmentsFromInvalidLocation = Truth.strToBooleanIgnoreCase(ConfigContext.getCurrentContextConfig().getProperty(TkConstants.LIMIT_MP_ASSIGN_FROM_INVALIDLOCATION), false);
96  
97                          for (Assignment assignment : assignments) {
98  							//Assignment assignment = timesheetDocument.getAssignment(AssignmentDescriptionKey.get(entry.getKey()), LocalDate.now());
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 }