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