Steuerfilterung für Debitoren- und Kreditorenbuchungen
authorNiclas Zimmermann <niclas@kivitendo-premium.de>
Mon, 6 Jan 2014 18:17:29 +0000 (19:17 +0100)
committerNiclas Zimmermann <niclas@kivitendo-premium.de>
Mon, 6 Jan 2014 18:17:29 +0000 (19:17 +0100)
Fixt #2346.

SL/Form.pm

index 56acec2..f0500d3 100644 (file)
@@ -2101,10 +2101,10 @@ sub _get_taxcharts {
   if (ref $params eq 'HASH') {
     $key = $params->{key} if ($params->{key});
     if ($params->{module} eq 'AR') {
-      push @where, 'taxkey NOT IN (8, 9, 18, 19)';
+      push @where, 'chart_categories ~ \'[ACILQ]\'';
 
     } elsif ($params->{module} eq 'AP') {
-      push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
+      push @where, 'chart_categories ~ \'[ACELQ]\'';
     }
 
   } elsif ($params) {