X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FForm.pm;h=9ba3f43bcdd1acb316119c10ada8d239145f91a0;hb=a5d5620d468d74e593ee31ece1d7dc3612d14faa;hp=caace43f6032675f89d0c66871d0c7b9e111cd4d;hpb=ee9fb352c2d675dfe828e5f672d857b827e003ed;p=kivitendo-erp.git 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();