◆ assignValuesFrom()
void org.turro.financials.entity.RegisterEntry.assignValuesFrom |
( |
RegisterEntry |
registerEntry | ) |
|
Definition at line 178 of file RegisterEntry.java.
void setAccount(Account account)
void setConciliated(boolean conciliated)
void setCredit(double credit)
void setRegister(Register register)
void setConcept(String concept)
void setDebit(double debit)
void setApproved(boolean approved)
◆ clearLine()
void org.turro.financials.entity.RegisterEntry.clearLine |
( |
| ) |
|
◆ entityId()
Object org.turro.financials.entity.RegisterEntry.entityId |
( |
| ) |
|
◆ getAccount()
Account org.turro.financials.entity.RegisterEntry.getAccount |
( |
| ) |
|
◆ getAccountString()
String org.turro.financials.entity.RegisterEntry.getAccountString |
( |
| ) |
|
◆ getConcept()
String org.turro.financials.entity.RegisterEntry.getConcept |
( |
| ) |
|
◆ getCredit()
double org.turro.financials.entity.RegisterEntry.getCredit |
( |
| ) |
|
◆ getDebit()
double org.turro.financials.entity.RegisterEntry.getDebit |
( |
| ) |
|
◆ getEntryOrder()
long org.turro.financials.entity.RegisterEntry.getEntryOrder |
( |
| ) |
|
◆ getId()
long org.turro.financials.entity.RegisterEntry.getId |
( |
| ) |
|
◆ getPath()
String org.turro.financials.entity.RegisterEntry.getPath |
( |
| ) |
|
◆ getRegister()
Register org.turro.financials.entity.RegisterEntry.getRegister |
( |
| ) |
|
◆ isApproved()
boolean org.turro.financials.entity.RegisterEntry.isApproved |
( |
| ) |
|
◆ isConciliated()
boolean org.turro.financials.entity.RegisterEntry.isConciliated |
( |
| ) |
|
◆ isEmpty()
boolean org.turro.financials.entity.RegisterEntry.isEmpty |
( |
| ) |
|
◆ prepareSave()
void org.turro.financials.entity.RegisterEntry.prepareSave |
( |
| ) |
|
Implements org.turro.jpa.entity.IDaoEntity.
Definition at line 151 of file RegisterEntry.java.
152 IDaoEntity.super.prepareSave();
153 Dao dao =
new FinancialsPU();
154 Account a = dao.find(Account.class, account.
getId());
155 if(a ==
null || !(a.getDescription().equals(account.
getDescription()))) {
156 dao.saveObject(account);
158 if(
register.getDocument() !=
null &&
register.getDocument().conciliateRegister) {
◆ roundIt()
void org.turro.financials.entity.RegisterEntry.roundIt |
( |
int |
fractionDigits | ) |
|
Definition at line 188 of file RegisterEntry.java.
189 debit =
new Round(debit).decimals(fractionDigits).value();
190 credit =
new Round(credit).decimals(fractionDigits).value();
◆ setAccount()
void org.turro.financials.entity.RegisterEntry.setAccount |
( |
Account |
account | ) |
|
◆ setApproved()
void org.turro.financials.entity.RegisterEntry.setApproved |
( |
boolean |
approved | ) |
|
◆ setConcept()
void org.turro.financials.entity.RegisterEntry.setConcept |
( |
String |
concept | ) |
|
◆ setConciliated()
void org.turro.financials.entity.RegisterEntry.setConciliated |
( |
boolean |
conciliated | ) |
|
◆ setCredit()
void org.turro.financials.entity.RegisterEntry.setCredit |
( |
double |
credit | ) |
|
◆ setDebit()
void org.turro.financials.entity.RegisterEntry.setDebit |
( |
double |
debit | ) |
|
◆ setEntryOrder()
void org.turro.financials.entity.RegisterEntry.setEntryOrder |
( |
long |
entryOrder | ) |
|
◆ setId()
void org.turro.financials.entity.RegisterEntry.setId |
( |
long |
id | ) |
|
◆ setPath()
void org.turro.financials.entity.RegisterEntry.setPath |
( |
String |
path | ) |
|
◆ setRegister()
void org.turro.financials.entity.RegisterEntry.setRegister |
( |
Register |
register | ) |
|
The documentation for this class was generated from the following file: