From 06a22a8b9282269c33e1462a87ed5140ec858794 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Thu, 8 Oct 2009 21:29:12 +0200 Subject: [PATCH] =?utf8?q?Fix=20f=C3=BCr=20Bug=201151.=20Beim=20Workflow?= =?utf8?q?=20vom=20Lieferschein=20zur=20Rechnung=20wird=20der=20Rabatt=20f?= =?utf8?q?alsch=20=C3=BCbernommen=20(0,1=20statt=2010%)=20Entsprechend=20d?= =?utf8?q?ie=20Berechnung=20vor=20=C3=9Cbergabe=20ge=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/do.pl | 1 + 1 file changed, 1 insertion(+) 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}; -- 2.20.1