|
Lines 356-364
if ( C4::Context->preference('SeparateHoldingsByGroup') ) {
Link Here
|
| 356 |
|
356 |
|
| 357 |
# Get other libraries in group |
357 |
# Get other libraries in group |
| 358 |
my @other_libs = grep { $_->branchcode ne $branchcode } @all_libs; |
358 |
my @other_libs = grep { $_->branchcode ne $branchcode } @all_libs; |
| 359 |
|
|
|
| 360 |
my @libs_branchcodes; |
359 |
my @libs_branchcodes; |
| 361 |
push @libs_branchcodes, $branchcode; |
|
|
| 362 |
|
360 |
|
| 363 |
foreach my $lib (@other_libs) { |
361 |
foreach my $lib (@other_libs) { |
| 364 |
push @libs_branchcodes, $lib->branchcode; |
362 |
push @libs_branchcodes, $lib->branchcode; |
| 365 |
- |
|
|