From: Jan Büren Date: Thu, 8 Oct 2009 19:29:12 +0000 (+0200) Subject: Fix für Bug 1151. Beim Workflow vom Lieferschein zur Rechnung wird der Rabatt falsch... X-Git-Tag: release-2.6.1beta1~241^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=06a22a8b9282269c33e1462a87ed5140ec858794;p=kivitendo-erp.git Fix für Bug 1151. Beim Workflow vom Lieferschein zur Rechnung wird der Rabatt falsch übernommen (0,1 statt 10%) Entsprechend die Berechnung vor Übergabe geändert --- diff --git a/bin/mozilla/do.pl b/bin/mozilla/do.pl index d67a1b93a..dfbd98351 100644 --- a/bin/mozilla/do.pl +++ b/bin/mozilla/do.pl @@ -772,6 +772,7 @@ sub invoice_multi { $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref }; map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice discount lastcost); + $form->{"discount_$form->{rowcount}"} = $form->{"discount_$form->{rowcount}"} * 100; #s.a. Bug 1151 } delete $form->{form_details};