From: G. Richardson Date: Mon, 5 Sep 2011 11:12:26 +0000 (+0200) Subject: Bei Gutschrift aus VK-Rechnung auch EK-Preis übernehmen X-Git-Tag: release-2.7.0beta1~310^2~1 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=627b91c86f6cace3cb63ab28ddfcaf7bcce6010a;p=kivitendo-erp.git Bei Gutschrift aus VK-Rechnung auch EK-Preis übernehmen Ansonsten geht lastcost verloren und Ertrag der Gutschrift wird 100% Dies stört im Rechnungsbericht und Verkaufsbericht --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 9dd8e8cc4..37fdda8af 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -350,7 +350,7 @@ sub display_row { $marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"}, $locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2), $locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) } - if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ || $form->{type} =~ /invoice/) && !$is_delivery_order; + if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ || $form->{type} =~ /invoice/ || $form->{type} =~ /^credit_note$/ ) && !$is_delivery_order; $form->{"listprice_$i"} = $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2) if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ || $form->{type} =~ /invoice/) ;