◆ ModelEntry()
org.turro.financials.treasury.m303.ModelEntry.ModelEntry |
( |
ModelSet |
set, |
|
|
ModelType |
type, |
|
|
int |
exercise |
|
) |
| |
Definition at line 38 of file m303/ModelEntry.java.
41 this.exercise = exercise;
42 quarter[0] =
new EntryQuarter(
this, 1);
43 quarter[1] =
new EntryQuarter(
this, 2);
44 quarter[2] =
new EntryQuarter(
this, 3);
45 quarter[3] =
new EntryQuarter(
this, 4);
◆ compareTo()
int org.turro.financials.treasury.m303.ModelEntry.compareTo |
( |
ModelEntry |
o | ) |
|
◆ getDao()
Dao org.turro.financials.treasury.m303.ModelEntry.getDao |
( |
| ) |
|
◆ getExercise()
int org.turro.financials.treasury.m303.ModelEntry.getExercise |
( |
| ) |
|
◆ getPossibleVats()
Set<Integer> org.turro.financials.treasury.m303.ModelEntry.getPossibleVats |
( |
| ) |
|
Definition at line 69 of file m303/ModelEntry.java.
71 vats =
new TreeSet<Integer>();
72 List<String> l =
getDao().getResultList(
73 "select distinct e.account.id from RegisterEntry e " +
74 "where year(e.register.registerDate) = ? " +
75 "and e.register.view.id = 1 " +
76 "and (e.register.exclude = FALSE and e.register.closing = FALSE and e.register.regularizeVAT = FALSE) " +
77 "and e.account.id like ?",
80 vats.add(Integer.valueOf(s.substring(7)));
◆ getQuarter()
EntryQuarter org.turro.financials.treasury.m303.ModelEntry.getQuarter |
( |
int |
index | ) |
|
◆ getType()
ModelType org.turro.financials.treasury.m303.ModelEntry.getType |
( |
| ) |
|
The documentation for this class was generated from the following file: