| Line 7... |
Line 7... |
| 7 |
private String title;
|
7 |
private String title;
|
| 8 |
private String auther;
|
8 |
private String auther;
|
| 9 |
private CustomCustomer customer;
|
9 |
private CustomCustomer customer;
|
| 10 |
private CustomRetailer retailer;
|
10 |
private CustomRetailer retailer;
|
| 11 |
private String invoiceNumber;
|
11 |
private String invoiceNumber;
|
| - |
|
12 |
private boolean isCancelled;
|
| - |
|
13 |
public boolean isCancelled() {
|
| - |
|
14 |
return isCancelled;
|
| - |
|
15 |
}
|
| - |
|
16 |
public void setCancelled(boolean isCancelled) {
|
| - |
|
17 |
this.isCancelled = isCancelled;
|
| - |
|
18 |
}
|
| 12 |
private String invoiceDate;
|
19 |
private String invoiceDate;
|
| 13 |
private Set<CustomOrderItem> orderItems;
|
20 |
private Set<CustomOrderItem> orderItems;
|
| 14 |
private Set<CustomInsurancePolicy> insurancePolicies;
|
21 |
private Set<CustomInsurancePolicy> insurancePolicies;
|
| 15 |
private List<CustomPaymentOption> paymentOptions;
|
22 |
private List<CustomPaymentOption> paymentOptions;
|
| 16 |
private List<String> tncs;
|
23 |
private List<String> tncs;
|
| Line 144... |
Line 151... |
| 144 |
return true;
|
151 |
return true;
|
| 145 |
}
|
152 |
}
|
| 146 |
@Override
|
153 |
@Override
|
| 147 |
public String toString() {
|
154 |
public String toString() {
|
| 148 |
return "PdfModel [title=" + title + ", auther=" + auther + ", customer=" + customer + ", retailer=" + retailer
|
155 |
return "PdfModel [title=" + title + ", auther=" + auther + ", customer=" + customer + ", retailer=" + retailer
|
| 149 |
+ ", invoiceNumber=" + invoiceNumber + ", invoiceDate=" + invoiceDate + ", orderItems=" + orderItems
|
156 |
+ ", invoiceNumber=" + invoiceNumber + ", isCancelled=" + isCancelled + ", invoiceDate=" + invoiceDate
|
| 150 |
+ ", insurancePolicies=" + insurancePolicies + ", paymentOptions=" + paymentOptions + ", tncs=" + tncs
|
157 |
+ ", orderItems=" + orderItems + ", insurancePolicies=" + insurancePolicies + ", paymentOptions="
|
| 151 |
+ ", totalAmount=" + totalAmount + "]";
|
158 |
+ paymentOptions + ", tncs=" + tncs + ", totalAmount=" + totalAmount + "]";
|
| 152 |
}
|
159 |
}
|
| 153 |
public String getInvoiceDate() {
|
160 |
public String getInvoiceDate() {
|
| 154 |
return invoiceDate;
|
161 |
return invoiceDate;
|
| 155 |
}
|
162 |
}
|
| 156 |
public void setInvoiceDate(String invoiceDate) {
|
163 |
public void setInvoiceDate(String invoiceDate) {
|