From: Sven Schöling Date: Thu, 14 May 2009 08:24:27 +0000 (+0000) Subject: Bugfix: Erzeugnisse wurden nicht mit er korrekten Überschrift angezeigt. X-Git-Tag: release-2.6.0rc1~76 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=41b2e935fb1e406b4015ac3a83df6062d74f6131;p=kivitendo-erp.git Bugfix: Erzeugnisse wurden nicht mit er korrekten Überschrift angezeigt. Bugfix für Bug 977. --- diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index 195a72cfb..5aa9e2c6a 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -99,7 +99,7 @@ sub search { $form->{title} = (ucfirst $form->{searchitems}) . "s"; $form->{title} = $locale->text($form->{title}); - $form->{title} = $locale->text('Assemblies') if ($is_xyz{assembly}); + $form->{title} = $locale->text('Assemblies') if ($is_xyz{is_assembly}); $form->{jsscript} = 1; @@ -1592,7 +1592,7 @@ sub assembly_row { $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2); - $line_purchase_price = + $line_purchase_price = $form->round_amount($form->{"lastcost_$i"} * $form->{"qty_$i"}, 2); #lastcost == purchase_price | ungenaue datenbankfeld-übersetzung $form->{assemblytotal} += $linetotal; $form->{assembly_purchase_price_total} += $line_purchase_price;