From: Sven Schöling Date: Fri, 23 Nov 2007 15:49:22 +0000 (+0000) Subject: Bugfix: X-Git-Tag: release-2.6.0beta1~401 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8b797f8bb9e4b7159b224670145fc6939f14bb2d;p=kivitendo-erp.git Bugfix: Bei einer Standardanfrage wurden die Mengen nicht mitangezeigt, weil die Datenbankanfrage gestartet wurde, bevor alle l_switches geparst wurden. --- diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index e5878fdfa..1d0c51950 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -1597,8 +1597,6 @@ sub generate_report { push @options, $optiontexts{$key}; } - IC->all_parts(\%myconfig, \%$form); - # special case for lastcost $form->{l_lastcost} = "" if $form->{ledgerchecks}; @@ -1642,6 +1640,8 @@ sub generate_report { $form->{l_lastcost} = "" if ($form->{searchitems} eq 'assembly' && !$form->{bom}); + IC->all_parts(\%myconfig, \%$form); + my @columns = qw(partnumber description partsgroup bin onhand rop unit listprice linetotallistprice sellprice linetotalsellprice lastcost linetotallastcost priceupdate weight image drawing microfiche invnumber ordnumber quonumber name serialnumber soldtotal deliverydate);