Solved Bug 365: Falsche UStVA bei negativem Vorsteuer-Betrag
authorUdo Spallek <info@wissensvermittlung.com>
Fri, 16 Jun 2006 16:31:27 +0000 (16:31 +0000)
committerUdo Spallek <info@wissensvermittlung.com>
Fri, 16 Jun 2006 16:31:27 +0000 (16:31 +0000)
SL/USTVA.pm

index 51296f1..f1bd2a0 100644 (file)
@@ -869,9 +869,10 @@ sub get_accounts_ustva {
   $sth->execute || $form->dberror($query);
 
   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
-    if ($ref->{amount} < 0) {
+# Bug 365 solved?!
+#    if ($ref->{amount} < 0) {
       $ref->{amount} *= -1;
-    }
+#    }
     if ($category eq "pos_bwa") {
       if ($last_period) {
         $form->{ $ref->{$category} }{kumm} += $ref->{amount};