View Javadoc
1   /*
2    * Copyright 2011 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  
17  package org.kuali.ole.select.bo;
18  
19  import org.kuali.ole.select.businessobject.OleInvoiceSubType;
20  import org.kuali.ole.select.businessobject.OlePurchaseOrderItem;
21  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
22  
23  import java.util.Date;
24  
25  public class OLEInvoiceSearchDocument extends PersistableBusinessObjectBase{
26  
27      private String documentNumber;
28      private String invoiceNumber;
29      private Date invoiceDate;
30      private String invoiceType;
31      private String invoiceTypeId;
32      private Date invoicePayDate;
33      private String documentStatus;
34      private String workFlowDocumentStatus;
35      private String invoiceSubType;
36      private Integer invoiceSubTypeId;
37      private OleInvoiceSubType oleInvoiceSubType;
38  
39      private String purapDocumentIdentifier;
40      private OlePurchaseOrderItem olePurchaseOrderItem;
41      private String vendorNumber;
42      private String vendorName;
43      private String invoiceNbr;
44  
45      public String getDocumentStatus() {
46          return documentStatus;
47      }
48  
49      public void setDocumentStatus(String documentStatus) {
50          this.documentStatus = documentStatus;
51      }
52  
53      public String getInvoiceTypeId() {
54          return invoiceTypeId;
55      }
56  
57      public void setInvoiceTypeId(String invoiceTypeId) {
58          this.invoiceTypeId = invoiceTypeId;
59      }
60  
61      public Integer getInvoiceSubTypeId() {
62          return invoiceSubTypeId;
63      }
64  
65      public void setInvoiceSubTypeId(Integer invoiceSubTypeId) {
66          this.invoiceSubTypeId = invoiceSubTypeId;
67      }
68  
69      public String getDocumentNumber() {
70          return documentNumber;
71      }
72  
73      public void setDocumentNumber(String documentNumber) {
74          this.documentNumber = documentNumber;
75      }
76  
77      public String getInvoiceNumber() {
78          return invoiceNumber;
79      }
80  
81      public void setInvoiceNumber(String invoiceNumber) {
82          this.invoiceNumber = invoiceNumber;
83      }
84  
85      public Date getInvoiceDate() {
86          return invoiceDate;
87      }
88  
89      public void setInvoiceDate(Date invoiceDate) {
90          this.invoiceDate = invoiceDate;
91      }
92  
93      public String getInvoiceType() {
94          return invoiceType;
95      }
96  
97      public void setInvoiceType(String invoiceType) {
98          this.invoiceType = invoiceType;
99      }
100 
101     public Date getInvoicePayDate() {
102         return invoicePayDate;
103     }
104 
105     public void setInvoicePayDate(Date invoicePayDate) {
106         this.invoicePayDate = invoicePayDate;
107     }
108 
109     public String getInvoiceSubType() {
110         return invoiceSubType;
111     }
112 
113     public void setInvoiceSubType(String invoiceSubType) {
114         this.invoiceSubType = invoiceSubType;
115     }
116 
117     public OleInvoiceSubType getOleInvoiceSubType() {
118         return oleInvoiceSubType;
119     }
120 
121     public void setOleInvoiceSubType(OleInvoiceSubType oleInvoiceSubType) {
122         this.oleInvoiceSubType = oleInvoiceSubType;
123     }
124 
125     public String getPurapDocumentIdentifier() {
126         return purapDocumentIdentifier;
127     }
128 
129     public void setPurapDocumentIdentifier(String purapDocumentIdentifier) {
130         this.purapDocumentIdentifier = purapDocumentIdentifier;
131     }
132 
133     public OlePurchaseOrderItem getOlePurchaseOrderItem() {
134         return olePurchaseOrderItem;
135     }
136 
137     public void setOlePurchaseOrderItem(OlePurchaseOrderItem olePurchaseOrderItem) {
138         this.olePurchaseOrderItem = olePurchaseOrderItem;
139     }
140 
141     public String getWorkFlowDocumentStatus() {
142         return workFlowDocumentStatus;
143     }
144 
145     public void setWorkFlowDocumentStatus(String workFlowDocumentStatus) {
146         this.workFlowDocumentStatus = workFlowDocumentStatus;
147     }
148 
149     public String getVendorNumber() {
150         return vendorNumber;
151     }
152 
153     public void setVendorNumber(String vendorNumber) {
154         this.vendorNumber = vendorNumber;
155     }
156 
157     public String getVendorName() {
158         return vendorName;
159     }
160 
161     public void setVendorName(String vendorName) {
162         this.vendorName = vendorName;
163     }
164 
165     public String getInvoiceNbr() {
166         return invoiceNbr;
167     }
168 
169     public void setInvoiceNbr(String invoiceNbr) {
170         this.invoiceNbr = invoiceNbr;
171     }
172 }