projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62b026b
)
Fehler bei negativen Umsaetzen behoben
author
Philip Reetz
<p.reetz@linet-services.de>
Fri, 4 Nov 2005 08:57:30 +0000
(08:57 +0000)
committer
Philip Reetz
<p.reetz@linet-services.de>
Fri, 4 Nov 2005 08:57:30 +0000
(08:57 +0000)
SL/DATEV.pm
patch
|
blob
|
history
diff --git
a/SL/DATEV.pm
b/SL/DATEV.pm
index
c202e05
..
e48b4db
100644
(file)
--- a/
SL/DATEV.pm
+++ b/
SL/DATEV.pm
@@
-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);