Lines 349-355
if ( C4::Context->preference('SeparateHoldingsByGroup') ) {
Link Here
|
349 |
|
349 |
|
350 |
# Get other libraries in group |
350 |
# Get other libraries in group |
351 |
my @other_libs = grep { $_->branchcode ne $branchcode } @all_libs; |
351 |
my @other_libs = grep { $_->branchcode ne $branchcode } @all_libs; |
|
|
352 |
|
352 |
my @libs_branchcodes; |
353 |
my @libs_branchcodes; |
|
|
354 |
push @libs_branchcodes, $branchcode; |
353 |
|
355 |
|
354 |
foreach my $lib (@other_libs) { |
356 |
foreach my $lib (@other_libs) { |
355 |
push @libs_branchcodes, $lib->branchcode; |
357 |
push @libs_branchcodes, $lib->branchcode; |
356 |
- |
|
|