View Javadoc
1   package org.kuali.ole.deliver.form;
2   
3   import org.kuali.ole.deliver.bo.PatronBillReviewDocument;
4   import org.kuali.rice.krad.web.form.DocumentFormBase;
5   
6   import java.math.BigDecimal;
7   import java.util.ArrayList;
8   import java.util.Date;
9   import java.util.List;
10  
11  /**
12   * Created with IntelliJ IDEA.
13   * User: ?
14   * Date: 12/6/12
15   * Time: 2:33 PM
16   * To change this template use File | Settings | File Templates.
17   */
18  public class PatronBillReviewForm extends DocumentFormBase {
19  
20      private boolean select;
21      private boolean reviewed;
22      private String itemBarcode;
23      private String billNumber;
24      private Date billDate;
25      private String patronId;
26      private String feeType;
27      private BigDecimal feeAmount;
28      private String paymentStatus;
29      private BigDecimal paymentAmount;
30      private String firstName;
31      private String lastName;
32      private BigDecimal totalAmount;
33      List<PatronBillReviewDocument> patronBillReviewDocumentList = new ArrayList<PatronBillReviewDocument>();
34      List<PatronBillReviewForm> patronBillReviewFormList = new ArrayList<PatronBillReviewForm>();
35      List<PatronBillReviewForm> patronBillReviewedFormList = new ArrayList<PatronBillReviewForm>();
36  
37  
38      public boolean isSelect() {
39          return select;
40      }
41  
42      public void setSelect(boolean select) {
43          this.select = select;
44      }
45  
46      public List<PatronBillReviewForm> getPatronBillReviewFormList() {
47          return patronBillReviewFormList;
48      }
49  
50      public void setPatronBillReviewFormList(List<PatronBillReviewForm> patronBillReviewFormList) {
51          this.patronBillReviewFormList = patronBillReviewFormList;
52      }
53  
54      public BigDecimal getTotalAmount() {
55          return totalAmount;
56      }
57  
58      public void setTotalAmount(BigDecimal totalAmount) {
59          this.totalAmount = totalAmount;
60      }
61  
62      public boolean isReviewed() {
63          return reviewed;
64      }
65  
66      public void setReviewed(boolean reviewed) {
67          this.reviewed = reviewed;
68      }
69  
70      public String getItemBarcode() {
71          return itemBarcode;
72      }
73  
74      public void setItemBarcode(String itemBarcode) {
75          this.itemBarcode = itemBarcode;
76      }
77  
78      public String getBillNumber() {
79          return billNumber;
80      }
81  
82      public void setBillNumber(String billNumber) {
83          this.billNumber = billNumber;
84      }
85  
86      public Date getBillDate() {
87          return billDate;
88      }
89  
90      public void setBillDate(Date billDate) {
91          this.billDate = billDate;
92      }
93  
94      public String getPatronId() {
95          return patronId;
96      }
97  
98      public void setPatronId(String patronId) {
99          this.patronId = patronId;
100     }
101 
102     public String getFeeType() {
103         return feeType;
104     }
105 
106     public void setFeeType(String feeType) {
107         this.feeType = feeType;
108     }
109 
110     public BigDecimal getFeeAmount() {
111         return feeAmount;
112     }
113 
114     public void setFeeAmount(BigDecimal feeAmount) {
115         this.feeAmount = feeAmount;
116     }
117 
118     public String getPaymentStatus() {
119         return paymentStatus;
120     }
121 
122     public void setPaymentStatus(String paymentStatus) {
123         this.paymentStatus = paymentStatus;
124     }
125 
126     public BigDecimal getPaymentAmount() {
127         return paymentAmount;
128     }
129 
130     public void setPaymentAmount(BigDecimal paymentAmount) {
131         this.paymentAmount = paymentAmount;
132     }
133 
134     public String getFirstName() {
135         return firstName;
136     }
137 
138     public void setFirstName(String firstName) {
139         this.firstName = firstName;
140     }
141 
142     public String getLastName() {
143         return lastName;
144     }
145 
146     public void setLastName(String lastName) {
147         this.lastName = lastName;
148     }
149 
150     public List<PatronBillReviewDocument> getPatronBillReviewDocumentList() {
151         return patronBillReviewDocumentList;
152     }
153 
154     public void setPatronBillReviewDocumentList(List<PatronBillReviewDocument> patronBillReviewDocumentList) {
155         this.patronBillReviewDocumentList = patronBillReviewDocumentList;
156     }
157 
158     public List<PatronBillReviewForm> getPatronBillReviewedFormList() {
159         return patronBillReviewedFormList;
160     }
161 
162     public void setPatronBillReviewedFormList(List<PatronBillReviewForm> patronBillReviewedFormList) {
163         this.patronBillReviewedFormList = patronBillReviewedFormList;
164     }
165 
166 }