From: Bernd Bleßmann Date: Wed, 8 Jan 2014 11:24:13 +0000 (+0100) Subject: Preisgruppenpreis nach Änderung der Preisgruppe im Gesamtpreis berücksichtigen. X-Git-Tag: release-3.1.0beta1~22^2~22^2~14^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=6573d4a45ddef660c04b34e37409bd1d90ded054;p=kivitendo-erp.git Preisgruppenpreis nach Änderung der Preisgruppe im Gesamtpreis berücksichtigen. Behebt #2080. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 480de9766..58c7d815b 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -225,6 +225,10 @@ sub display_row { qw(qty discount sellprice lastcost price_new price_old) unless ($form->{simple_save}); + if ($form->{"prices_$i"} && ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})) { + $form->{"sellprice_$i"} = $form->{"price_new_$i"}; + } + # unit begin $form->{"unit_old_$i"} ||= $form->{"unit_$i"}; $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};