View | Details | Raw Unified | Return to bug 28181
Collapse All | Expand All

(-)a/pos/pay.pl (-2 / +2 lines)
Lines 34-40 my $library_id = C4::Context->userenv->{'branch'}; Link Here
34
my $registerid         = $input->param('registerid');
34
my $registerid         = $input->param('registerid');
35
35
36
my $invoice_types =
36
my $invoice_types =
37
  Koha::Account::DebitTypes->search_with_library_limits( { can_be_sold => 1 },
37
  Koha::Account::DebitTypes->search_with_library_limits(
38
    { can_be_sold => 1, archived => 0 },
38
    {}, $library_id );
39
    {}, $library_id );
39
$template->param( invoice_types => $invoice_types );
40
$template->param( invoice_types => $invoice_types );
40
41
41
- 

Return to bug 28181