001 /** 002 * Copyright 2004-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.kpme.tklm.common; 017 018 import javax.servlet.http.HttpServletRequest; 019 import javax.servlet.http.HttpServletResponse; 020 021 import org.apache.commons.lang.StringUtils; 022 import org.apache.struts.action.ActionForm; 023 import org.apache.struts.action.ActionForward; 024 import org.apache.struts.action.ActionMapping; 025 import org.kuali.kpme.core.web.KPMEAction; 026 import org.kuali.kpme.tklm.leave.service.LmServiceLocator; 027 import org.kuali.kpme.tklm.leave.workflow.LeaveCalendarDocumentHeader; 028 import org.kuali.kpme.tklm.time.service.TkServiceLocator; 029 import org.kuali.kpme.tklm.time.workflow.TimesheetDocumentHeader; 030 031 public class DeleteDocumentAction extends KPMEAction { 032 033 public ActionForward deleteDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { 034 DeleteDocumentForm deleteDocumentForm = (DeleteDocumentForm) form; 035 String documentId = deleteDocumentForm.getDeleteDocumentId(); 036 037 if (StringUtils.isNotBlank(documentId)) { 038 TimesheetDocumentHeader tdh = TkServiceLocator.getTimesheetDocumentHeaderService().getDocumentHeader(documentId); 039 LeaveCalendarDocumentHeader ldh = LmServiceLocator.getLeaveCalendarDocumentHeaderService().getDocumentHeader(documentId); 040 041 if(tdh != null) { 042 TkServiceLocator.getClockLogService().deleteClockLogsForDocumentId(documentId); 043 TkServiceLocator.getTimeBlockService().deleteTimeBlocksAssociatedWithDocumentId(documentId); 044 TkServiceLocator.getTimesheetService().deleteTimesheet(documentId); 045 } else if (ldh != null) { 046 LmServiceLocator.getLeaveBlockService().deleteLeaveBlocksForDocumentId(documentId); 047 LmServiceLocator.getLeaveCalendarDocumentHeaderService().deleteLeaveCalendarHeader(documentId); 048 } 049 } 050 051 return mapping.findForward("basic"); 052 } 053 054 }