View Javadoc
1   package org.kuali.ole.select.form;
2   
3   import org.kuali.ole.select.document.OLEPurchaseOrderBatchDocument;
4   import org.kuali.rice.krad.web.form.TransactionalDocumentFormBase;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: gopalp
9    * Date: 5/15/15
10   * Time: 1:15 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OLEPurchaseOrderBatchForm extends TransactionalDocumentFormBase {
14  
15      private OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument;
16  
17      public OLEPurchaseOrderBatchDocument getOlePurcharseOrderBatchDocument() {
18          return olePurcharseOrderBatchDocument;
19      }
20  
21      public void setOlePurcharseOrderBatchDocument(OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument) {
22          this.olePurcharseOrderBatchDocument = olePurcharseOrderBatchDocument;
23      }
24  
25      @Override
26      protected String getDefaultDocumentTypeName() {
27          return "OLE_POBA";
28      }
29  }