Subversion Repositories SmartDukaan

Rev

Rev 35024 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35024 Rev 35696
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import java.util.ArrayList;
3
import java.util.List;
4
import java.util.List;
4
import java.util.Objects;
5
import java.util.Objects;
5
 
6
 
6
public class InvoicePdfModel {
7
public class InvoicePdfModel {
7
    private String title;
8
    private String title;
Line 60... Line 61...
60
 
61
 
61
    private List<String> creditTerms;
62
    private List<String> creditTerms;
62
    private float totalAmount;
63
    private float totalAmount;
63
 
64
 
64
    private EWayBillPdfModel eWayBillPdfModel;
65
    private EWayBillPdfModel eWayBillPdfModel;
-
 
66
    private boolean hasMarginSchemeItems;
-
 
67
    private List<String> marginSchemeDeclarations;
65
 
68
 
66
 
69
 
67
 
70
 
68
    public boolean isCancelled() {
71
    public boolean isCancelled() {
69
        return isCancelled;
72
        return isCancelled;
Line 200... Line 203...
200
    }
203
    }
201
 
204
 
202
    public List<String> getCreditTerms() {
205
    public List<String> getCreditTerms() {
203
        return creditTerms;
206
        return creditTerms;
204
    }
207
    }
-
 
208
 
-
 
209
    public boolean isHasMarginSchemeItems() {
-
 
210
        return hasMarginSchemeItems;
-
 
211
    }
-
 
212
 
-
 
213
    public void setHasMarginSchemeItems(boolean hasMarginSchemeItems) {
-
 
214
        this.hasMarginSchemeItems = hasMarginSchemeItems;
-
 
215
    }
-
 
216
 
-
 
217
    public List<String> getMarginSchemeDeclarations() {
-
 
218
        return marginSchemeDeclarations;
-
 
219
    }
-
 
220
 
-
 
221
    public void setMarginSchemeDeclarations(List<String> marginSchemeDeclarations) {
-
 
222
        this.marginSchemeDeclarations = marginSchemeDeclarations;
-
 
223
    }
205
}
224
}