◆ ModelEntry()
org.turro.financials.treasury.m303m.ModelEntry.ModelEntry |
( |
ModelSet |
set, |
|
|
ModelType |
type, |
|
|
int |
exercise |
|
) |
| |
Definition at line 40 of file m303m/ModelEntry.java.
43 this.exercise = exercise;
44 month[0] =
new EntryMonth(
this, 1);
45 month[1] =
new EntryMonth(
this, 2);
46 month[2] =
new EntryMonth(
this, 3);
47 month[3] =
new EntryMonth(
this, 4);
48 month[4] =
new EntryMonth(
this, 5);
49 month[5] =
new EntryMonth(
this, 6);
50 month[6] =
new EntryMonth(
this, 7);
51 month[7] =
new EntryMonth(
this, 8);
52 month[8] =
new EntryMonth(
this, 9);
53 month[9] =
new EntryMonth(
this, 10);
54 month[10] =
new EntryMonth(
this, 11);
55 month[11] =
new EntryMonth(
this, 12);
◆ compareTo()
int org.turro.financials.treasury.m303m.ModelEntry.compareTo |
( |
ModelEntry |
o | ) |
|
◆ getDao()
Dao org.turro.financials.treasury.m303m.ModelEntry.getDao |
( |
| ) |
|
◆ getExercise()
int org.turro.financials.treasury.m303m.ModelEntry.getExercise |
( |
| ) |
|
◆ getMonth()
EntryMonth org.turro.financials.treasury.m303m.ModelEntry.getMonth |
( |
int |
index | ) |
|
◆ getPossibleVats()
Set<Integer> org.turro.financials.treasury.m303m.ModelEntry.getPossibleVats |
( |
| ) |
|
Definition at line 79 of file m303m/ModelEntry.java.
81 vats =
new TreeSet<Integer>();
82 List<String> l =
getDao().getResultList(
83 "select distinct e.account.id from RegisterEntry e " +
84 "where year(e.register.registerDate) = ? " +
85 "and e.register.view.id = 1 " +
86 "and (e.register.exclude = FALSE and e.register.closing = FALSE and e.register.regularizeVAT = FALSE) " +
87 "and e.account.id like ?",
90 vats.add(Integer.valueOf(s.substring(7)));
◆ getType()
ModelType org.turro.financials.treasury.m303m.ModelEntry.getType |
( |
| ) |
|
The documentation for this class was generated from the following file: