From e6d64cd01fc36d35af73767c99d28a8abc2f8b0c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Wed, 3 Aug 2016 14:50:44 +0200 Subject: [PATCH] Rabatt mit Nachkommastellen Workflow Auftrag -> Rechnung MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Ursprüngliche Idee von Waldemar in OD-Bugfixes hier: 3c705b61f32d81c41352fe Getestet mit: Kundenrabatt, Individuellen-Rabatt, Preisregel-Rabatt Sowie ferner ohne Rabatt und mit freiem Rabatt ohne Nachkommastellen Behebt den Auftrags -> Rechnungsteil von #99 --- bin/mozilla/oe.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index a14bbed07..fc55c0dff 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -1464,7 +1464,7 @@ sub invoice { $form->{cp_id} *= 1; for my $i (1 .. $form->{rowcount}) { - for (qw(ship qty sellprice basefactor)) { + for (qw(ship qty sellprice basefactor discount)) { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"}; } $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"}; -- 2.20.1