Revision 3af5e2e0
Von Niclas Zimmermann vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/AccTransaction.pm | ||
---|---|---|
27 | 27 |
itime => { type => 'timestamp', default => 'now()' }, |
28 | 28 |
mtime => { type => 'timestamp' }, |
29 | 29 |
tax_id => { type => 'integer', not_null => 1 }, |
30 |
chart_link => { type => 'text', not_null => 1 }, |
|
30 | 31 |
], |
31 | 32 |
|
32 | 33 |
primary_key_columns => [ 'acc_trans_id' ], |
... | ... | |
41 | 42 |
class => 'SL::DB::Project', |
42 | 43 |
key_columns => { project_id => 'id' }, |
43 | 44 |
}, |
45 |
|
|
46 |
tax => { |
|
47 |
class => 'SL::DB::Tax', |
|
48 |
key_columns => { tax_id => 'id' }, |
|
49 |
}, |
|
44 | 50 |
], |
45 | 51 |
); |
46 | 52 |
|
Auch abrufbar als: Unified diff
chart.link in der acc_trans
Enthält noch einige Ergänzungen zu commit
d1408ca13458a782cbde2b768cdd7abdbdcb9348. Es werden jetzt auch
periodisch erzeugte Rechnungen berücksichtigt und SEPA-Überweisungen
funktionieren wieder.
Weiterhin werden noch einige Syntax-Fehler behoben.