@@ -, +, @@ --- .../prog/en/modules/reports/serials_stats.tt | 12 ++++++++---- reports/serials_stats.pl | 16 ++-------------- 2 files changed, 10 insertions(+), 18 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt @@ -73,20 +73,24 @@ [% END %]
  • -
  • - +
  • --- a/reports/serials_stats.pl +++ a/reports/serials_stats.pl @@ -140,19 +140,7 @@ if($do_it){ while(my $row = $sth->fetchrow_hashref){ push(@booksellers,$row) } - - ## We generate branchlist - my $branches=GetBranches(); - my @branchloop; - foreach (sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches) { - my $thisbranch = ''; # FIXME: populate $thisbranch to preselect one - my %row = (branchcode => $_, - selected => ($thisbranch eq $_ ? 1 : 0), - branchname => $branches->{$_}->{'branchname'}, - ); - push @branchloop, \%row; - } - + my $CGIextChoice=CGI::scrolling_list( -name => 'MIME', -id => 'MIME', @@ -164,7 +152,7 @@ if($do_it){ CGIextChoice => $CGIextChoice, CGIsepChoice => $CGIsepChoice, booksellers => \@booksellers, - branches => \@branchloop); + branches => GetBranchesLoop(C4::Context->userenv->{'branch'})); } output_html_with_http_headers $input, $cookie, $template->output; --