From 6bec8556dd912e2559a7742fed673da190495793 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 10 Mar 2016 11:33:03 +0100 Subject: [PATCH] Korrekturen im Hauptbuch verbessert MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Prüfung auf Steuerschlüssel nur bei Bestandsmethode --- SL/AccTransCorrections.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/SL/AccTransCorrections.pm b/SL/AccTransCorrections.pm index ea7ca531d..e2fdb27c0 100644 --- a/SL/AccTransCorrections.pm +++ b/SL/AccTransCorrections.pm @@ -262,6 +262,10 @@ sub _check_trans_invoices_inventory_with_taxkeys { my $self = shift; my %params = @_; + # ist nur für bestandsmethode notwendig. bei der Aufwandsmethode + # können Warenkonten mit Steuerschlüssel sein (5400 in SKR04) + return 0 if $::instance_conf->get_inventory_system eq 'periodic'; + if (!$params{transaction}->[0]->{invoice}) { $main::lxdebug->leave_sub(); return 0; @@ -803,6 +807,10 @@ sub fix_invoice_inventory_with_taxkeys { my $self = shift; my %params = @_; + # ist nur für bestandsmethode notwendig. bei der Aufwandsmethode + # können Warenkonten mit Steuerschlüssel sein (5400 in SKR04) + return 0 if $::instance_conf->get_inventory_system eq 'periodic'; + my $myconfig = \%main::myconfig; my $form = $main::form; -- 2.20.1