Lines 71-85
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
Link Here
|
71 |
} |
71 |
} |
72 |
); |
72 |
); |
73 |
|
73 |
|
74 |
my $schema = Koha::Database->new()->schema(); |
74 |
my @items_bundles = Koha::Item::Bundles->search( |
75 |
my $items_bundle_rs = $schema->resultset('ItemsBundle'); |
75 |
{}, |
76 |
my @items_bundles = $items_bundle_rs->search( |
76 |
{ group_by => ['host'], columns => ['host'] } |
77 |
undef, |
77 |
)->as_list; |
78 |
{ |
|
|
79 |
order_by => { -asc => ['biblionumber.title'] }, |
80 |
join => ['biblionumber'], |
81 |
} |
82 |
); |
83 |
my @authorised_value_list; |
78 |
my @authorised_value_list; |
84 |
my $authorisedvalue_categories = ''; |
79 |
my $authorisedvalue_categories = ''; |
85 |
|
80 |
|
86 |
- |
|
|