View Javadoc
1   /**
2    * Copyright 2004-2015 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.batch;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.apache.log4j.Logger;
20  import org.kuali.kpme.core.api.calendar.Calendar;
21  import org.kuali.kpme.core.api.calendar.entry.CalendarEntry;
22  import org.kuali.kpme.core.batch.BatchJob;
23  import org.kuali.kpme.core.calendar.CalendarBo;
24  import org.kuali.kpme.core.calendar.entry.CalendarEntryBo;
25  import org.kuali.kpme.core.service.HrServiceLocator;
26  import org.kuali.kpme.tklm.common.BatchJobService;
27  import org.kuali.kpme.tklm.leave.service.LmServiceLocator;
28  import org.kuali.kpme.tklm.time.service.TkServiceLocator;
29  import org.kuali.rice.kew.api.exception.WorkflowException;
30  import org.quartz.JobDataMap;
31  import org.quartz.JobExecutionContext;
32  import org.quartz.JobExecutionException;
33  
34  public class InitiateJob extends BatchJob {
35  	
36  	private static final Logger LOG = Logger.getLogger(InitiateJob.class);
37  	
38  	public void execute(JobExecutionContext context) throws JobExecutionException {
39  		JobDataMap jobDataMap = context.getJobDetail().getJobDataMap();
40  		TkServiceLocator.getBatchJobService().updateStatus(context.getJobDetail(), BatchJobService.RUNNING_JOB_STATUS_CODE);
41  		String hrCalendarEntryId = jobDataMap.getString("hrCalendarEntryId");
42  		String principalId = jobDataMap.getString("principalId");
43  		
44  		CalendarEntry calendarEntry =  HrServiceLocator.getCalendarEntryService().getCalendarEntry(hrCalendarEntryId);
45          Calendar calendar = HrServiceLocator.getCalendarService().getCalendar(calendarEntry.getHrCalendarId());
46  		
47  		try {
48  			if (StringUtils.equals(calendar.getCalendarTypes(), "Pay")) {
49  				TkServiceLocator.getTimesheetService().openTimesheetDocument(principalId, calendarEntry);
50  			} else if (StringUtils.equals(calendar.getCalendarTypes(), "Leave")) {
51  				LmServiceLocator.getLeaveCalendarService().openLeaveCalendarDocument(principalId, calendarEntry);
52  			}
53  		} catch (WorkflowException we) {
54  			TkServiceLocator.getBatchJobService().updateStatus(context.getJobDetail(), BatchJobService.FAILED_JOB_STATUS_CODE);
55  			LOG.error("Failure to execute job due to WorkflowException", we);
56  //			throw new JobExecutionException("Failure to execute job due to WorkflowException", we);
57  		}
58  		TkServiceLocator.getBatchJobService().updateStatus(context.getJobDetail(), BatchJobService.SUCCEEDED_JOB_STATUS_CODE);
59  	}
60  	
61  }