Revision 064a0998
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
# but we use the same function to collect information
|
||
|
||
if ($form->{project_id}) {
|
||
$project = qq| AND ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
|
||
$project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
|
||
}
|
||
|
||
# get beginning balances
|
||
... | ... | |
$form->{ "$key" . "neutraleraufwand" } +
|
||
$form->{ "$key" . "neutralertrag" };
|
||
$form->{ "$key" . "ergebnis" } =
|
||
$form->{ "$key" . "ergebnisvorsteuern" } + $form->{35}{$key};
|
||
$form->{ "$key" . "ergebnisvorsteuern" } - $form->{35}{$key};
|
||
|
||
if ($form->{ "$key" . "gesamtleistung" } > 0) {
|
||
foreach $category (@categories) {
|
Auch abrufbar als: Unified diff
1. Klammer-Fehler im SQL-Query. Fix für Bug 727.
2. BWA: Steuern müssen vom Gesamtergebnis abgezogen und nicht hinzugezählt werden. Fix für Bug 728.