In Berichten ar und oe auch die prozentuale Marge bei Zwischensummen und Gesammtsumme...
authorPhilip Reetz <p.reetz@linet-services.de>
Tue, 24 Jul 2007 08:17:12 +0000 (08:17 +0000)
committerPhilip Reetz <p.reetz@linet-services.de>
Tue, 24 Jul 2007 08:17:12 +0000 (08:17 +0000)
bin/mozilla/ar.pl
bin/mozilla/oe.pl

index 305b6aa..161dde9 100644 (file)
@@ -1518,7 +1518,7 @@ sub ar_transactions {
   # escape callback for href
   $callback = $form->escape($href);
 
-  my @subtotal_columns = qw(netamount amount paid due marge_total);
+  my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
   my %totals    = map { $_ => 0 } @subtotal_columns;
   my %subtotals = map { $_ => 0 } @subtotal_columns;
@@ -1532,6 +1532,9 @@ sub ar_transactions {
     map { $subtotals{$_} += $ar->{$_};
           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
+    $subtotals{marge_percent} = $subtotals{marge_total} / $subtotals{netamount} * 100;
+    $totals{marge_percent} = $totals{marge_total} / $totals{netamount} * 100;
+
     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
     my $is_storno  = $ar->{storno} && !$ar->{storno_id};
index 92cfb69..c64edef 100644 (file)
@@ -1761,7 +1761,7 @@ sub orders {
   # escape callback for href
   $callback = $form->escape($href);
 
-  my @subtotal_columns = qw(netamount amount marge_total);
+  my @subtotal_columns = qw(netamount amount marge_total marge_percent);
 
   my %totals    = map { $_ => 0 } @subtotal_columns;
   my %subtotals = map { $_ => 0 } @subtotal_columns;
@@ -1779,6 +1779,8 @@ sub orders {
 
     map { $subtotals{$_} += $oe->{$_};
           $totals{$_}    += $oe->{$_} } @subtotal_columns;
+    $subtotals{marge_percent} = $subtotals{marge_total} / $subtotals{netamount} * 100;
+    $totals{marge_percent} = $totals{marge_total} / $totals{netamount} * 100;
 
     map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent);