X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/1c72997a75092b0be98d66884efea080acbb25b0..a5d5620d468d74e593ee31ece1d7dc3612d14faa:/SL/Form.pm diff --git a/SL/Form.pm b/SL/Form.pm index caace43f6..9ba3f43bc 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -1602,6 +1602,20 @@ $main::lxdebug->enter_sub(); $main::lxdebug->leave_sub(); } +sub _get_customers { + $main::lxdebug->enter_sub(); + + my ($self, $dbh, $key) = @_; + + $key = "all_customers" unless ($key); + + my $query = qq|SELECT * FROM customer LIMIT $main::myconfig{vclimit}|; + + $self->{$key} = selectall_hashref_query($self, $dbh, $query); + + $main::lxdebug->leave_sub(); +} + sub get_lists { $main::lxdebug->enter_sub(); @@ -1663,6 +1677,10 @@ sub get_lists { if($params{"currencies"}) { $self->_get_currencies($dbh, $params{"currencies"}); } + + if($params{"customers"}) { + $self->_get_customers($dbh, $params{"customers"}); + } $dbh->disconnect();