Revision 71d1fccd
Von Kivitendo Admin vor fast 11 Jahren hinzugefügt
bin/mozilla/rp.pl | ||
---|---|---|
375 | 375 |
. qq| $longcomparetodate|; |
376 | 376 |
} |
377 | 377 |
|
378 |
if ( $::instance_conf->get_profit_determination eq 'balance' ) { |
|
379 |
$form->{income_statement_title} = $locale->text('Income Statement'); |
|
380 |
} elsif ( $::instance_conf->get_profit_determination eq 'income' ) { |
|
381 |
$form->{income_statement_title} = $locale->text('Net Income Statement'); |
|
382 |
} else { |
|
383 |
$form->{income_statement_title} = ""; |
|
384 |
}; |
|
385 |
|
|
386 |
if ( $form->{method} eq 'cash' ) { |
|
387 |
$form->{accounting_method} = $locale->text('Cash accounting'); |
|
388 |
} elsif ( $form->{method} eq 'accrual' ) { |
|
389 |
$form->{accounting_method} = $locale->text('Accrual accounting'); |
|
390 |
} else { |
|
391 |
$form->{accounting_method} = ""; |
|
392 |
}; |
|
393 |
|
|
394 |
$::form->{report_date} = $locale->text('Report date') . ": " . $::form->current_date; |
|
395 |
|
|
378 | 396 |
$form->{IN} = "income_statement.html"; |
379 | 397 |
|
380 | 398 |
$form->parse_template; |
Auch abrufbar als: Unified diff
GuV: Anpassung Überschrift in Standard und Verlinkung RB
Je nachdem wie die Gewinnermittlungsmethode des Mandanten eingestellt
ist die Überschrift im HTML-Bericht jetzt "GuV" oder
"Einnahmenüberschußrechnung". In den Menüs heißt der Link aber weiterhin
nur GuV.
Zusätzlich wird angegeben, ob nach Ist- oder Sollversteuerung
ausgewertet wurde (dies kann beim Bericht individuell eingestellt
werden, die Einstellung kommt nicht aus Stammdaten).
Zusätzlich wird das Berichtsdatum (Datum der Berichtserstellung) mit
ausgegeben.
Die GuV-Vorlage wurde im Standard angepasst und von den RB-Vorlagen
verlinkt. Beim Erstellen neuer Vorlagen aus RB wird aus dem Symlink
allerdings eine neue Datei, d.h. zukünftige Änderungen an der
GuV-Vorlage müßten händisch angepasst/kopiert werden.
Eventuell sollte man die Druckvorlage wie die Bilanz auf templates/rp
umstellen.