View Javadoc

1   /*
2    * Copyright 2007-2008 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 edu.sampleu.travel.web.action;
17  
18  import java.util.Iterator;
19  
20  import javax.servlet.http.HttpServletRequest;
21  import javax.servlet.http.HttpServletResponse;
22  
23  import org.apache.commons.lang.StringUtils;
24  import org.apache.struts.action.ActionForm;
25  import org.apache.struts.action.ActionForward;
26  import org.apache.struts.action.ActionMapping;
27  import org.kuali.rice.core.util.RiceConstants;
28  import org.kuali.rice.kns.exception.ValidationException;
29  import org.kuali.rice.kns.service.KNSServiceLocator;
30  import org.kuali.rice.kns.util.GlobalVariables;
31  import org.kuali.rice.kns.util.KNSConstants;
32  import org.kuali.rice.kns.util.RiceKeyConstants;
33  import org.kuali.rice.kns.web.struts.action.KualiTransactionalDocumentActionBase;
34  
35  import edu.sampleu.travel.bo.TravelAccount;
36  import edu.sampleu.travel.document.TravelDocument2;
37  import edu.sampleu.travel.web.form.TravelDocumentForm2;
38  
39  public class TravelDocumentAction2 extends KualiTransactionalDocumentActionBase {
40  
41      public ActionForward insertAccount(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
42          TravelDocumentForm2 travelForm = (TravelDocumentForm2) form;
43          TravelAccount travAcct = (TravelAccount) KNSServiceLocator.getBusinessObjectService().retrieve(travelForm.getTravelAccount());
44          // Make sure a travel account was actually retrieved.
45          if (travAcct == null) {
46          	GlobalVariables.getMessageMap().putError("travelAccount.number", RiceKeyConstants.ERROR_CUSTOM, "Invalid travel account number");
47          	throw new ValidationException("Invalid travel account number");
48          }
49          // Insert the travel account into the list, if the list does not already contain it.
50          boolean containsNewAcct = false;
51          for (Iterator<TravelAccount> travAcctIter = ((TravelDocument2) travelForm.getDocument()).getTravelAccounts().iterator(); travAcctIter.hasNext();) {
52          	if (travAcctIter.next().getNumber().equals(travAcct.getNumber())) {
53          		containsNewAcct = true;
54          		break;
55          	}
56          }
57          if (!containsNewAcct) {
58          	((TravelDocument2) travelForm.getDocument()).getTravelAccounts().add(travAcct);
59          }
60          travelForm.setTravelAccount(new TravelAccount());
61          return mapping.findForward(RiceConstants.MAPPING_BASIC);
62      }
63  
64      public ActionForward deleteAccount(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
65      	// Remove the travel account at the index specified in the "methodToCall" parameter.
66      	TravelDocumentForm2 travelForm = (TravelDocumentForm2) form;
67      	String strIndex = StringUtils.substringBetween((String) request.getAttribute(KNSConstants.METHOD_TO_CALL_ATTRIBUTE),
68          		KNSConstants.METHOD_TO_CALL_PARM1_LEFT_DEL, KNSConstants.METHOD_TO_CALL_PARM1_RIGHT_DEL);
69      	if (StringUtils.isNotBlank(strIndex)) {
70      		((TravelDocument2) travelForm.getDocument()).getTravelAccounts().remove(Integer.parseInt(strIndex));
71      	}
72          return mapping.findForward(RiceConstants.MAPPING_BASIC);
73      }
74      
75      public ActionForward refresh(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
76          return mapping.findForward(RiceConstants.MAPPING_BASIC);
77      }
78  }