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

(-)a/pos/pay.pl (-2 / +2 lines)
Lines 51-57 my $library_id = C4::Context->userenv->{'branch'}; Link Here
51
my $registerid         = $input->param('registerid');
51
my $registerid         = $input->param('registerid');
52
52
53
my $invoice_types =
53
my $invoice_types =
54
  Koha::Account::DebitTypes->search_with_library_limits( { can_be_sold => 1 },
54
  Koha::Account::DebitTypes->search_with_library_limits(
55
    { can_be_sold => 1, archived => 0 },
55
    {}, $library_id );
56
    {}, $library_id );
56
$template->param( invoice_types => $invoice_types );
57
$template->param( invoice_types => $invoice_types );
57
58
58
- 

Return to bug 28181