From 9dc9d7a849e2adb59da3f66efbdd9b4c1a8cefa2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Mon, 4 Nov 2019 11:12:28 +0100 Subject: [PATCH] CSV-Import Debitorenbuchungen: maximale Betragsabweichung (Einstellungen) parsen --- SL/Controller/CsvImport.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Controller/CsvImport.pm b/SL/Controller/CsvImport.pm index 0a6935ed6..6ca25d069 100644 --- a/SL/Controller/CsvImport.pm +++ b/SL/Controller/CsvImport.pm @@ -488,7 +488,7 @@ sub profile_from_form { $::form->{settings}->{sellprice_adjustment} = $::form->parse_amount(\%::myconfig, $::form->{settings}->{sellprice_adjustment}); } - if ($self->type eq 'orders') { + if ($self->type eq 'orders' or $self->{type} eq 'ar_transactions') { $::form->{settings}->{max_amount_diff} = $::form->parse_amount(\%::myconfig, $::form->{settings}->{max_amount_diff}); } -- 2.20.1