Revision 064a0998
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
800 | 800 |
# but we use the same function to collect information |
801 | 801 |
|
802 | 802 |
if ($form->{project_id}) { |
803 |
$project = qq| AND ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |; |
|
803 |
$project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
|
|
804 | 804 |
} |
805 | 805 |
|
806 | 806 |
# get beginning balances |
... | ... | |
1642 | 1642 |
$form->{ "$key" . "neutraleraufwand" } + |
1643 | 1643 |
$form->{ "$key" . "neutralertrag" }; |
1644 | 1644 |
$form->{ "$key" . "ergebnis" } = |
1645 |
$form->{ "$key" . "ergebnisvorsteuern" } + $form->{35}{$key};
|
|
1645 |
$form->{ "$key" . "ergebnisvorsteuern" } - $form->{35}{$key};
|
|
1646 | 1646 |
|
1647 | 1647 |
if ($form->{ "$key" . "gesamtleistung" } > 0) { |
1648 | 1648 |
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.