- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 33 of file Account.java.
◆ entityId()
Object org.turro.financials.entity.Account.entityId |
( |
| ) |
|
◆ getDescription()
String org.turro.financials.entity.Account.getDescription |
( |
| ) |
|
◆ getFullDescription()
String org.turro.financials.entity.Account.getFullDescription |
( |
| ) |
|
Definition at line 71 of file Account.java.
72 return "#" +
id +
" - " + description;
◆ getId()
String org.turro.financials.entity.Account.getId |
( |
| ) |
|
◆ getParent()
MajorAccount org.turro.financials.entity.Account.getParent |
( |
| ) |
|
Definition at line 75 of file Account.java.
76 if(
id !=
null &&
id.length() > 1) {
77 List l =
new FinancialsPU().getResultList(
78 "select m from MajorAccount as m " +
79 "where '" +
id +
"' " +
"like concat(m.account, '%') " +
80 "order by m.account desc");
82 return (MajorAccount) l.get(0);
◆ isEmpty()
boolean org.turro.financials.entity.Account.isEmpty |
( |
| ) |
|
◆ proposeDescription()
void org.turro.financials.entity.Account.proposeDescription |
( |
| ) |
|
Definition at line 88 of file Account.java.
void setDescription(String description)
◆ setDescription()
void org.turro.financials.entity.Account.setDescription |
( |
String |
description | ) |
|
Definition at line 45 of file Account.java.
46 this.description = description;
◆ setId()
void org.turro.financials.entity.Account.setId |
( |
String |
id | ) |
|
The documentation for this class was generated from the following file: