1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
57 }
58 TkServiceLocator.getBatchJobService().updateStatus(context.getJobDetail(), BatchJobService.SUCCEEDED_JOB_STATUS_CODE);
59 }
60
61 }