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:
56911d6
)
Steuerfilterung für Debitoren- und Kreditorenbuchungen
author
Niclas Zimmermann
<niclas@kivitendo-premium.de>
Mon, 6 Jan 2014 18:17:29 +0000
(19:17 +0100)
committer
Niclas Zimmermann
<niclas@kivitendo-premium.de>
Mon, 6 Jan 2014 18:17:29 +0000
(19:17 +0100)
Fixt #2346.
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
56acec2
..
f0500d3
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-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) {