From: Sven Schöling Date: Fri, 7 Mar 2008 17:53:46 +0000 (+0000) Subject: kleiner Fix zum Top100 System X-Git-Tag: release-2.6.0beta1~186 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0cf83814de3ae95e0ac01430b8c0d2756949a86e;p=kivitendo-erp.git kleiner Fix zum Top100 System --- diff --git a/SL/IC.pm b/SL/IC.pm index 704c21393..f981cd384 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -730,9 +730,9 @@ sub assembly_item { # short - NOT IMPLEMENTED as form filter, only as itemstatus option # l_serialnumber - belonges to serialnumber filter # l_deliverydate - displays deliverydate is sold etc. flags are active +# l_soldtotal - aggreg join to display total of sold quantity, works as long as there's no bullshit in soldtotal # # not working: -# l_soldtotal - aggreg join to display total of sold quantity # onhand - as above, but masking the simple itemstatus results (doh!) # masking of onhand in bsooqr mode - ToDO: fixme # @@ -752,7 +752,8 @@ sub all_parts { my ($self, $myconfig, $form) = @_; my $dbh = $form->get_standard_dbh($myconfig); - $form->{parts} = +{ }; + $form->{parts} = +{ }; + $form->{soldtotal} = undef if $form->{l_soldtotal}; # security fix. top100 insists on putting strings in there... my @simple_filters = qw(partnumber ean description partsgroup microfiche drawing onhand); my @makemodel_filters = qw(make model);