Kontendarstellung: Steuersatz Prozentsatz fehlte
authorUdo Spallek <info@wissensvermittlung.com>
Mon, 5 Mar 2007 15:47:44 +0000 (15:47 +0000)
committerUdo Spallek <info@wissensvermittlung.com>
Mon, 5 Mar 2007 15:47:44 +0000 (15:47 +0000)
bin/mozilla/am.pl

index 6ff9997..276a2da 100644 (file)
@@ -96,13 +96,16 @@ sub account_header {
   $form->{description} =~ s/\"/&quot;/g;
 
   if (@{ $form->{TAXKEY} }) {
-    foreach $item (@{ $form->{TAXKEY} }) {
+    foreach my $item (@{ $form->{TAXKEY} }) {
+
+      $item->{rate} = $item->{rate} * 100 . '%';
+
       if ($item->{tax} == $form->{tax}) {
         $form->{selecttaxkey} .=
-          "<option value=$item->{tax} selected>$item->{taxdescription}\n";
+          "<option value=$item->{tax} selected>$item->{taxdescription} ($item->{rate})\n";
       } else {
         $form->{selecttaxkey} .=
-          "<option value=$item->{tax}>$item->{taxdescription}\n";
+          "<option value=$item->{tax}>$item->{taxdescription} ($item->{rate})\n";
       }
 
     }