Lines 90-97
$template->param(do_it => $do_it,
Link Here
|
90 |
our $itemtypes = GetItemTypes(); |
90 |
our $itemtypes = GetItemTypes(); |
91 |
our @patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['description']}); |
91 |
our @patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['description']}); |
92 |
|
92 |
|
93 |
my $locations = { map { ( $_->{authorised_value} => $_->{lib} ) } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' }, { order_by => ['description'] } ) }; |
93 |
our $locations = { map { ( $_->{authorised_value} => $_->{lib} ) } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' }, { order_by => ['description'] } ) }; |
94 |
my $ccodes = { map { ( $_->{authorised_value} => $_->{lib} ) } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.ccode' }, { order_by => ['description'] } ) }; |
94 |
our $ccodes = { map { ( $_->{authorised_value} => $_->{lib} ) } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.ccode' }, { order_by => ['description'] } ) }; |
95 |
|
95 |
|
96 |
our $Bsort1 = GetAuthorisedValues("Bsort1"); |
96 |
our $Bsort1 = GetAuthorisedValues("Bsort1"); |
97 |
our $Bsort2 = GetAuthorisedValues("Bsort2"); |
97 |
our $Bsort2 = GetAuthorisedValues("Bsort2"); |
98 |
- |
|
|