1 package org.kuali.ole.select.businessobject;
2
3 import java.util.Date;
4
5
6
7
8
9
10
11
12 public class OlePurchaseOrderDetailsForInvoice {
13
14 private Date poEndDate;
15 private boolean closePO;
16 private String poNotes;
17 private String purapDocumentIdentifier;
18
19 public Date getPoEndDate() {
20 return poEndDate;
21 }
22
23 public void setPoEndDate(Date poEndDate) {
24 this.poEndDate = poEndDate;
25 }
26
27 public String getPurapDocumentIdentifier() {
28 return purapDocumentIdentifier;
29 }
30
31 public void setPurapDocumentIdentifier(String purapDocumentIdentifier) {
32 this.purapDocumentIdentifier = purapDocumentIdentifier;
33 }
34
35 public String getPoNotes() {
36 return poNotes;
37 }
38
39 public void setPoNotes(String poNotes) {
40 this.poNotes = poNotes;
41 }
42
43 public boolean isClosePO() {
44 return closePO;
45 }
46
47 public void setClosePO(boolean closePO) {
48 this.closePO = closePO;
49 }
50 }