Revision dfcefa49
Von Kivitendo Admin vor fast 11 Jahren hinzugefügt
SL/Controller/ClientConfig.pm | ||
---|---|---|
18 | 18 |
__PACKAGE__->run_before('check_auth'); |
19 | 19 |
|
20 | 20 |
use Rose::Object::MakeMethods::Generic ( |
21 |
'scalar --get_set_init' => [ qw(defaults all_warehouses all_weightunits all_languages all_currencies all_templates posting_options payment_options accounting_options inventory_options profit_options accounts) ], |
|
21 |
'scalar --get_set_init' => [ qw(defaults all_warehouses all_weightunits all_languages all_currencies all_templates posting_options payment_options accounting_options inventory_options profit_options accounts balance_startdate_method_options) ],
|
|
22 | 22 |
); |
23 | 23 |
|
24 | 24 |
sub action_edit { |
... | ... | |
167 | 167 |
{ title => t8("income"), value => "income" }, ] |
168 | 168 |
} |
169 | 169 |
|
170 |
sub init_balance_startdate_method_options { |
|
171 |
[ { title => t8("After closed period"), value => "closed_to" }, |
|
172 |
{ title => t8("Start of year"), value => "start_of_year" }, |
|
173 |
{ title => t8("All transactions"), value => "all_transactions" }, |
|
174 |
{ title => t8("Last opening balance or all transactions"), value => "last_ob_or_all_transactions" }, |
|
175 |
{ title => t8("Last opening balance or start of year"), value => "last_ob_or_start_of_year" }, ] |
|
176 |
} |
|
177 |
|
|
170 | 178 |
sub init_accounts { |
171 | 179 |
my %accounts; |
172 | 180 |
|
Auch abrufbar als: Unified diff
Startdatum in Bilanz in Mandantenkonfiguration konfigurierbar gemacht
Bisher wurde closed_to ("Bücher schließen zum") als Grundlage für das
Jetzt kann man Einstellen, ob manStartdatum benutzt. Schließt man die Bücher allerdings monatsweise führt dies
zu falschen Werten. Siehe auch Ticket #2444.
Das "Bücher schließen Datum" ist sinnvoll, wenn man nur komplette Jahre
schließt. Bei Wirtschaftsjahr = Kalendarjahr entspricht dies aber auch
Jahresanfang.
"Alle Buchungen" kann z.B. sinnvoll sein wenn man ohne Jahresabschluß
durchbucht.
Eröffnungsbuchung mit "alle Buchungen" als Fallback ist z.B. sinnvoll, wenn man
am sich Anfang des zweiten Buchungsjahres befindet, und noch keinen
Jahreswechsel und auch noch keine EB-Buchungen hat.
Bei den Optionen mit EB-Buchungen wird vorausgesetzt, daß diese immer am 1. Tag
des Wirtschaftsjahres gebucht werden.
Zur Sicherheit wird das Startdatum im Bilanzbericht jetzt zusätzlich zum
Stichtag mit angezeigt. Das hilft auch bei der Kontrolle für den
Abgleich mit der GuV.
Es ist geplant dies weiter zu überarbeiten, wenn ein abweichendes
Wirtschaftsjahr umgesetzt wird. Die SuSa kann z.B. derzeit nicht mit
abweichenden Wirtschaftsjahren umgehen.