X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=reports%2Fserials_stats.pl;h=d86c5b96bff03aa26d5a45f88fa985e93e4df38a;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=88918ccadece9ffc7e0d82598b94bf660fe27694;hpb=e93126834cddfb5e0f33f0f8df77e67ee2a68b48;p=koha_fer diff --git a/reports/serials_stats.pl b/reports/serials_stats.pl index 88918ccade..d86c5b96bf 100755 --- a/reports/serials_stats.pl +++ b/reports/serials_stats.pl @@ -94,11 +94,20 @@ if($do_it){ my @datas; while(my $row = $sth->fetchrow_hashref){ - $row->{'enddate'} = format_date(GetExpirationDate($row->{'subscriptionid'})); - $row->{'startdate'} = format_date($row->{'startdate'}); - push @datas, $row if ($expired || (not $expired && not HasSubscriptionExpired($row->{subscriptionid})) ); + $row->{'enddate'} = GetExpirationDate($row->{'subscriptionid'}); + $row->{expired} = HasSubscriptionExpired($row->{subscriptionid}); + push @datas, $row if ( + $expired + or ( + not $expired + and ( + not $row->{expired} + and not $row->{closed} + ) + ) + ); } - + if($output eq 'screen'){ $template->param(datas => \@datas, do_it => 1); @@ -125,7 +134,7 @@ if($do_it){ print $item->{startdate}.$sep; print $item->{enddate}."\n"; } - exit(1); + exit; } }else{ ## We generate booksellers list @@ -140,19 +149,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 +161,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;