3 # Copyright 2009 SARL Biblibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use C4::Branch; # GetBranches
26 use C4::Dates qw/format_date/;
34 plugin that shows a stats on serials
43 my $templatename = "reports/serials_stats.tmpl";
44 my $do_it = $input->param("do_it");
45 my $bookseller = $input->param("bookseller");
46 my $branchcode = $input->param("branchcode");
47 my $expired = $input->param("expired");
48 my $order = $input->param("order");
49 my $output = $input->param("output");
50 my $basename = $input->param("basename");
51 our $sep = $input->param("sep") || '';
52 $sep = "\t" if ($sep eq 'tabulation');
54 my ($template, $borrowernumber, $cookie)
55 = get_template_and_user({template_name => $templatename,
59 flagsrequired => {reports => '*'},
65 my $dbh = C4::Context->dbh;
68 my $where = "WHERE 1 ";
70 # if a specific branchcode was selected
71 if( $branchcode ne '' ){
72 $where .= "AND branchcode = ? ";
73 push @args,$branchcode;
76 # if a specific bookseller was selected
77 if($bookseller ne ''){
78 $where .= "AND aqbooksellerid = ? ";
79 push @args,$bookseller;
82 my $sth = $dbh->prepare("SELECT *
84 LEFT JOIN aqbooksellers
85 ON (aqbooksellers.id=subscription.aqbooksellerid)
87 ON (biblio.biblionumber=subscription.biblionumber)
93 ## hash generation of items by branchcode
96 while(my $row = $sth->fetchrow_hashref){
97 $row->{'enddate'} = format_date(GetExpirationDate($row->{'subscriptionid'}));
98 $row->{'startdate'} = format_date($row->{'startdate'});
99 push @datas, $row if ($expired || (not $expired && not HasSubscriptionExpired($row->{subscriptionid})) );
102 if($output eq 'screen'){
103 $template->param(datas => \@datas,
106 binmode STDOUT, ':encoding(UTF-8)';
107 print $input->header(-type => 'application/vnd.sun.xml.calc',
108 -encoding => 'utf-8',
109 -name => "$basename.csv",
110 -attachment => "$basename.csv");
113 print "Subscription id".$sep;
115 print "Callnumber".$sep;
116 print "Subscription Begin".$sep;
117 print "Subscription End\n";
119 foreach my $item (@datas){
120 print $item->{name}.$sep;
121 print $item->{title}.$sep;
122 print $item->{subscriptionid}.$sep;
123 print $item->{branchcode}.$sep;
124 print $item->{callnumber}.$sep;
125 print $item->{startdate}.$sep;
126 print $item->{enddate}."\n";
131 ## We generate booksellers list
134 my $sth = $dbh->prepare("SELECT aqbooksellerid, aqbooksellers.name
136 LEFT JOIN aqbooksellers ON (subscription.aqbooksellerid=aqbooksellers.id )
137 GROUP BY aqbooksellerid");
140 while(my $row = $sth->fetchrow_hashref){
141 push(@booksellers,$row)
144 my $CGIextChoice=CGI::scrolling_list(
147 -values => ['CSV'], # FIXME translation
150 my $CGIsepChoice=GetDelimiterChoices;
152 CGIextChoice => $CGIextChoice,
153 CGIsepChoice => $CGIsepChoice,
154 booksellers => \@booksellers,
155 branches => GetBranchesLoop(C4::Context->userenv->{'branch'}));
158 output_html_with_http_headers $input, $cookie, $template->output;