Fehler bei negativen Umsaetzen behoben
authorPhilip Reetz <p.reetz@linet-services.de>
Fri, 4 Nov 2005 08:57:30 +0000 (08:57 +0000)
committerPhilip Reetz <p.reetz@linet-services.de>
Fri, 4 Nov 2005 08:57:30 +0000 (08:57 +0000)
SL/DATEV.pm

index c202e05..e48b4db 100644 (file)
@@ -651,7 +651,7 @@ sub kne_buchungsexport {
         }
       }
 
-      $umsatzsumme += $umsatz;
+      $umsatzsumme += abs($umsatz);
 
       # Umwandlung von Umlauten und Sonderzeichen in erlaubte Zeichen bei Textfeldern
       foreach $umlaut (keys(%umlaute)) {
@@ -696,6 +696,7 @@ sub kne_buchungsexport {
         $blockcount++;
         $total_bytes = ($blockcount) * 256;
       }
+      $umsatz = abs($umsatz);
       $vorzeichen = ($umsatz > 0) ? "+" : "-";
       $buchungssatz .= $vorzeichen . &formatumsatz($umsatz, 0);
       $remaining_bytes = $total_bytes - length($buchungssatz . $header);