1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.kuali.kfs.module.ar.report;
21
22 import java.math.BigDecimal;
23 import java.sql.Date;
24
25
26
27
28 public class ContractsGrantsInvoiceReportDetailDataHolder {
29 private Long proposalNumber;
30 private String documentNumber;
31 private String invoiceType;
32 private Date invoiceDate;
33 private Date invoiceDueDate;
34 private String openInvoiceIndicator;
35 private String customerNumber;
36 private String customerName;
37 private String sortedFieldValue;
38 private BigDecimal invoiceAmount;
39 private BigDecimal paymentAmount;
40 private BigDecimal remainingAmount;
41 private Long ageInDays;
42 private BigDecimal invoiceSubTotal;
43 private BigDecimal paymentSubTotal;
44 private BigDecimal remainingSubTotal;
45 public boolean displaySubtotal;
46
47
48
49
50
51
52 public Long getProposalNumber() {
53 return proposalNumber;
54 }
55
56
57
58
59
60
61 public void setProposalNumber(Long proposalNumber) {
62 this.proposalNumber = proposalNumber;
63 }
64
65
66
67
68
69
70 public String getDocumentNumber() {
71 return documentNumber;
72 }
73
74
75
76
77
78
79 public void setDocumentNumber(String documentNumber) {
80 this.documentNumber = documentNumber;
81 }
82
83
84
85
86
87
88 public String getInvoiceType() {
89 return invoiceType;
90 }
91
92
93
94
95
96
97 public void setInvoiceType(String invoiceType) {
98 this.invoiceType = invoiceType;
99 }
100
101
102
103
104
105
106 public Date getInvoiceDate() {
107 return invoiceDate;
108 }
109
110
111
112
113
114
115 public void setInvoiceDate(Date invoiceDate) {
116 this.invoiceDate = invoiceDate;
117 }
118
119
120
121
122
123
124 public Date getInvoiceDueDate() {
125 return invoiceDueDate;
126 }
127
128
129
130
131
132
133 public void setInvoiceDueDate(Date invoiceDueDate) {
134 this.invoiceDueDate = invoiceDueDate;
135 }
136
137
138
139
140
141
142 public String getOpenInvoiceIndicator() {
143 return openInvoiceIndicator;
144 }
145
146
147
148
149
150
151 public void setOpenInvoiceIndicator(String openInvoiceIndicator) {
152 this.openInvoiceIndicator = openInvoiceIndicator;
153 }
154
155
156
157
158
159
160 public String getCustomerNumber() {
161 return customerNumber;
162 }
163
164
165
166
167
168
169 public void setCustomerNumber(String customerNumber) {
170 this.customerNumber = customerNumber;
171 }
172
173
174
175
176
177
178 public String getCustomerName() {
179 return customerName;
180 }
181
182
183
184
185
186
187 public void setCustomerName(String customerName) {
188 this.customerName = customerName;
189 }
190
191
192
193
194
195
196 public String getSortedFieldValue() {
197 return sortedFieldValue;
198 }
199
200
201
202
203
204
205 public void setSortedFieldValue(String sortedFieldValue) {
206 this.sortedFieldValue = sortedFieldValue;
207 }
208
209
210
211
212
213
214 public BigDecimal getInvoiceAmount() {
215 return invoiceAmount;
216 }
217
218
219
220
221
222
223 public void setInvoiceAmount(BigDecimal invoiceAmount) {
224 this.invoiceAmount = invoiceAmount;
225 }
226
227
228
229
230
231
232 public BigDecimal getPaymentAmount() {
233 return paymentAmount;
234 }
235
236
237
238
239
240
241 public void setPaymentAmount(BigDecimal paymentAmount) {
242 this.paymentAmount = paymentAmount;
243 }
244
245
246
247
248
249
250 public BigDecimal getRemainingAmount() {
251 return remainingAmount;
252 }
253
254
255
256
257
258
259 public void setRemainingAmount(BigDecimal remainingAmount) {
260 this.remainingAmount = remainingAmount;
261 }
262
263
264
265
266
267
268 public Long getAgeInDays() {
269 return ageInDays;
270 }
271
272
273
274
275
276
277 public void setAgeInDays(Long ageInDays) {
278 this.ageInDays = ageInDays;
279 }
280
281
282
283
284
285
286 public BigDecimal getInvoiceSubTotal() {
287 return invoiceSubTotal;
288 }
289
290
291
292
293
294
295 public void setInvoiceSubTotal(BigDecimal invoiceSubTotal) {
296 this.invoiceSubTotal = invoiceSubTotal;
297 }
298
299
300
301
302
303
304 public BigDecimal getPaymentSubTotal() {
305 return paymentSubTotal;
306 }
307
308
309
310
311
312
313 public void setPaymentSubTotal(BigDecimal paymentSubTotal) {
314 this.paymentSubTotal = paymentSubTotal;
315 }
316
317
318
319
320
321
322 public BigDecimal getRemainingSubTotal() {
323 return remainingSubTotal;
324 }
325
326
327
328
329
330
331 public void setRemainingSubTotal(BigDecimal remainingSubTotal) {
332 this.remainingSubTotal = remainingSubTotal;
333 }
334
335
336
337
338
339
340 public boolean isDisplaySubtotal() {
341 return displaySubtotal;
342 }
343
344
345
346
347
348
349 public void setDisplaySubtotal(boolean displaySubtotal) {
350 this.displaySubtotal = displaySubtotal;
351 }
352 }