From 3a24478925cbb65bbcd6f54fa19c272c684fcdad Mon Sep 17 00:00:00 2001 From: Niclas Zimmermann Date: Mon, 6 Jan 2014 15:11:23 +0100 Subject: [PATCH] =?utf8?q?Rabatte=20f=C3=BCr=20Kundengruppe=20in=20Rechnun?= =?utf8?q?g=20=C3=BCbernehmen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Rabat für Kundengruppen werden jetzt berücksichtigt, wenn man aus einem Lieferschein eine Rechnung erstellt. ACHTUNG: Fix bezieht sich auf 2261. Der Bug bleibt jedoch bestehen, wenn man erst Positionen einträgt und dann Kunden wechselt. Es ist jedoch kaum möglich, dieses Verhalten zu ändern. Fixed Bug #2261. --- bin/mozilla/do.pl | 2 +- templates/webpages/do/form_header.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/mozilla/do.pl b/bin/mozilla/do.pl index 3e54c1ed8..b722e2081 100644 --- a/bin/mozilla/do.pl +++ b/bin/mozilla/do.pl @@ -412,7 +412,7 @@ sub update_delivery_order { map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] }; $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor}; - $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}); + $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"} * (1 - $form->{tradediscount})); $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}); $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}); } diff --git a/templates/webpages/do/form_header.html b/templates/webpages/do/form_header.html index 5af79bedc..5454d4d83 100644 --- a/templates/webpages/do/form_header.html +++ b/templates/webpages/do/form_header.html @@ -116,6 +116,7 @@ + [% IF is_customer %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %] [%- UNLESS !delivered && SHOW_VC_DROP_DOWN %] -- 2.20.1