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.approval.service;
17  
18  import java.math.BigDecimal;
19  import java.util.Date;
20  import java.util.List;
21  import java.util.Map;
22  import java.util.Set;
23  import java.util.SortedSet;
24  
25  import org.joda.time.DateTimeZone;
26  import org.joda.time.Interval;
27  import org.kuali.hr.core.KPMEConstants;
28  import org.kuali.hr.lm.leaveblock.LeaveBlock;
29  import org.kuali.hr.time.approval.web.ApprovalTimeSummaryRow;
30  import org.kuali.hr.time.calendar.Calendar;
31  import org.kuali.hr.time.calendar.CalendarEntries;
32  import org.kuali.hr.time.timeblock.TimeBlock;
33  import org.kuali.hr.time.workflow.TimesheetDocumentHeader;
34  import org.kuali.rice.kew.api.note.Note;
35  import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
36  import org.springframework.cache.annotation.Cacheable;
37  
38  import com.google.common.collect.Multimap;
39  
40  
41  public interface TimeApproveService {
42  
43      /**
44       * Obtains a Map of Lists of ApprovalTimeSummaryRows. The Key to the map is
45       * the PayCalendar Group name.
46       *
47       * @param payBeginDate
48       * @param payEndDate
49       * @param calGroup Specify a calendar group to filter by.
50       * @return A Map<String, List<ApprovalTimeSummaryRow>> container.
51       */
52  	public List<ApprovalTimeSummaryRow> getApprovalSummaryRows(Date payBeginDate, Date payEndDate, String calGroup, List<String> principalIds, List<String> payCalendarLabels, CalendarEntries payCalendarEntries);
53  	
54  
55  
56  //	public List<ApprovalTimeSummaryRow> getApprovalSummaryRows(Date payBeginDate, Date payEndDate, String calGroup, List<String> principalIds);
57  
58      @Cacheable(value= KPMEConstants.KPME_GLOBAL_CACHE_NAME, key="'{PayCalendarLabelsForApprovalTab}' + 'payBeginDate=' + #p0 + '|' + 'payEndDate=' + #p1")
59  	public List<String> getPayCalendarLabelsForApprovalTab(Date payBeginDate, Date payEndDate);
60  
61      /**
62       * Method to obtain all of the active Pay Calendar Group names for the current
63       * user / approver.
64       * We used SortedSet here since we only want unique values while keeping the order.
65       * Besides, we also need to get the first value as the default pay calendar group in some cases.
66       * There is not get() method in the Set interface.
67       *
68       * @param payBeginDate
69       * @param payEndDate
70       * @return
71       */
72      public SortedSet<String> getApproverPayCalendarGroups(Date payBeginDate, Date payEndDate);
73  
74      /**
75       * Used to determine if there are notes on a document
76       * @param documentNumber
77       * @return list of note objects
78       */
79  	public List<Note> getNotesForDocument(String documentNumber);
80  
81      public Map<String, BigDecimal> getHoursToPayDayMap(String principalId, Date payEndDate, List<String> payCalendarLabels, List<TimeBlock> lstTimeBlocks, List<LeaveBlock> leaveBlocks, Long workArea, CalendarEntries payCalendarEntries, Calendar payCalendar, DateTimeZone dateTimeZone, List<Interval> dayIntervals);
82  
83  	public Map<String, BigDecimal> getHoursToFlsaWeekMap(String principalId, Date payEndDate, List<String> payCalendarLabels, List<TimeBlock> lstTimeBlocks, List<LeaveBlock> leaveBlocks, Long workArea, CalendarEntries payCalendarEntries, Calendar payCalendar, DateTimeZone dateTimeZone, List<Interval> dayIntervals);
84      /**
85       * Method to provide a mapping of PayCalendarGroupNames to PayCalendarEntries to
86       * allow for various starting points in Approval Tab Navigation.
87       *
88       * @param currentDate The current date. This method will search for active
89       * assignments for this approver active as of this date, and 31 days prior
90       * to pull back PayCalendarEntries.
91       *
92       * @return A CalendarGroup Name to PayCalendarEntries mapping.
93       */
94      public Map<String,CalendarEntries> getPayCalendarEntriesForApprover(String principalId, Date currentDate, String dept);
95      
96      /*
97       * returns all Calendar entries with TimeSheetDocument created and can be approved by given principalId
98       */
99      public List<CalendarEntries> getAllPayCalendarEntriesForApprover(String principalId, Date currentDate);
100     
101 
102     
103     public boolean doesApproverHavePrincipalsForCalendarGroup(Date asOfDate, String calGroup);
104     public Map<String,CalendarEntries> getPayCalendarEntriesForDept(String dept, Date currentDate);
105 
106     /**
107      * Method to create a map that contains the principal's id and corresponding timesheet document header.
108      *
109      * @param payBeginDate
110      * @param payEndDate
111      * @return A PrincipalId to TimesheetDocumentHeader mapping.
112      */
113     Map<String, TimesheetDocumentHeader> getPrincipalDocumentHeader(List<String> principalIds, Date payBeginDate, Date payEndDate);
114 
115     /**
116      * Method to create a map of the depts and their associated work areas based on the given approver work areas.
117      *
118      * @param approverWorkAres
119      * @return A Dept and Work Areas mapping.
120      */
121     Multimap<String, Long> getDeptWorkAreasByWorkAreas(Set<Long> approverWorkAres);
122 
123     /**
124      * Method to create a map of the depts and their associated work areas based on the given depts.
125      *
126      * @param userDepts
127      * @return A Dept and Work Areas mapping.
128      */
129     Multimap<String, Long> getDeptWorkAreasByDepts(Set<String> userDepts);
130     
131     public DocumentRouteHeaderValue getRouteHeader(String documentId);
132     
133     /**
134      * Get a list of unique principal ids with given criteria
135      * used to populate tables in Time approval page 
136      * @param workAreaList
137      * @param calendarGroup
138      * @param effdt
139      * @param beginDate
140      * @param endDate
141      * @return
142      */
143     public List<String> getTimePrincipalIdsWithSearchCriteria(List<String> workAreaList, String calendarGroup, java.sql.Date effdt, java.sql.Date beginDate, java.sql.Date endDate);
144 }