◆ AmountTaxable()
org.turro.financials.model.document.AmountTaxable.AmountTaxable |
( |
Double |
perCent, |
|
|
Double |
tax, |
|
|
Double |
req |
|
) |
| |
◆ add()
void org.turro.financials.model.document.AmountTaxable.add |
( |
Double |
taxValue, |
|
|
Double |
taxRealValue, |
|
|
Double |
reqValue, |
|
|
Double |
amount, |
|
|
Double |
taxable |
|
) |
| |
Definition at line 43 of file AmountTaxable.java.
44 this.taxValue += taxValue;
45 this.taxRealValue += taxRealValue;
46 this.reqValue += reqValue;
47 this.amount += amount;
48 this.taxable += taxable;
◆ compareTo()
int org.turro.financials.model.document.AmountTaxable.compareTo |
( |
AmountTaxable |
o | ) |
|
◆ equals()
boolean org.turro.financials.model.document.AmountTaxable.equals |
( |
Object |
obj | ) |
|
Definition at line 126 of file AmountTaxable.java.
130 if (getClass() != obj.getClass()) {
134 if (this.perCent != other.perCent && (
this.perCent ==
null || !
this.perCent.equals(other.perCent))) {
AmountTaxable(Double perCent, Double tax, Double req)
◆ getAmount()
Double org.turro.financials.model.document.AmountTaxable.getAmount |
( |
| ) |
|
◆ getDiscount()
Double org.turro.financials.model.document.AmountTaxable.getDiscount |
( |
| ) |
|
Definition at line 67 of file AmountTaxable.java.
68 return new Round(amount - taxable).decimals(fractionDigits).value();
◆ getFullTaxAmount()
Double org.turro.financials.model.document.AmountTaxable.getFullTaxAmount |
( |
| ) |
|
◆ getReq()
Double org.turro.financials.model.document.AmountTaxable.getReq |
( |
| ) |
|
◆ getReqAmount()
Double org.turro.financials.model.document.AmountTaxable.getReqAmount |
( |
| ) |
|
◆ getTax()
Double org.turro.financials.model.document.AmountTaxable.getTax |
( |
| ) |
|
◆ getTaxable()
Double org.turro.financials.model.document.AmountTaxable.getTaxable |
( |
| ) |
|
◆ getTaxAmount()
Double org.turro.financials.model.document.AmountTaxable.getTaxAmount |
( |
| ) |
|
◆ getTaxRealAmount()
Double org.turro.financials.model.document.AmountTaxable.getTaxRealAmount |
( |
| ) |
|
◆ getTotal()
Double org.turro.financials.model.document.AmountTaxable.getTotal |
( |
| ) |
|
◆ hashCode()
int org.turro.financials.model.document.AmountTaxable.hashCode |
( |
| ) |
|
Definition at line 119 of file AmountTaxable.java.
121 hash = 23 * hash + (this.perCent !=
null ? this.perCent.hashCode() : 0);
◆ isEmpty()
boolean org.turro.financials.model.document.AmountTaxable.isEmpty |
( |
| ) |
|
Definition at line 114 of file AmountTaxable.java.
115 return amount ==
null || amount == 0 || amount.isNaN();
◆ isPerCent()
boolean org.turro.financials.model.document.AmountTaxable.isPerCent |
( |
Double |
perCent | ) |
|
◆ setFractionDigits()
void org.turro.financials.model.document.AmountTaxable.setFractionDigits |
( |
int |
fractionDigits | ) |
|
The documentation for this class was generated from the following file: