[Koha-cvs] koha/reports reservereport.pl [rel_2_2]

Joshua Ferraro jmf at kados.org
Wed Feb 8 01:00:00 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Joshua Ferraro <kados at savannah.gnu.org>	06/02/08 00:00:00

Added files:
	reports        : reservereport.pl 

Log message:
	A new report contributed by katipo. Needs some updating to remove
	hardcoded statuses

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/reports/reservereport.pl?only_with_tag=rel_2_2&rev=1.6.2.1

Patches:
Index: koha/reports/reservereport.pl
diff -u /dev/null koha/reports/reservereport.pl:1.6.2.1
--- /dev/null	Wed Feb  8 00:00:00 2006
+++ koha/reports/reservereport.pl	Wed Feb  8 00:00:00 2006
@@ -0,0 +1,164 @@
+#!/usr/bin/perl
+
+#written 26/4/2000
+#script to display reports
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+# script now takes a branchcode arg
+# eg: http://koha.rangitikei.katipo.co.nz/cgi-bin/koha/reports/reservereport.pl?branch=BL
+
+use strict;
+use C4::Stats;
+use C4::Date;
+use CGI;
+use C4::Output;
+use HTML::Template;
+use C4::Auth;
+use C4::Interface::CGI::Output;
+use C4::Koha;
+use C4::Search;
+
+my %env;
+my $input  = new CGI;
+my $branch = $input->param('branch');
+my $sort   = $input->param('sort');
+
+if ( $branch eq "" ) {
+    $branch = "ALL";
+}
+
+my $branches = getbranches('IS');
+
+my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
+    {
+        template_name   => "reports/reservereport.tmpl",
+        query           => $input,
+        type            => "intranet",
+        authnotrequired => 0,
+        flagsrequired   => { editcatalogue => 1 },
+        debug           => 1,
+    }
+);
+
+# building up branches dropdown box
+#sticking an 'all branches' option on first
+
+my %branchall;
+my $branchcount = 0;
+my @branchloop;
+
+$branchall{name}  = "All Branches";
+$branchall{value} = "";
+push( @branchloop, \%branchall );
+
+foreach my $br ( keys %$branches ) {
+    $branchcount++;
+    my %branch1;
+    $branch1{name}  = $branches->{$br}->{'branchname'};
+    $branch1{value} = $br;
+    push( @branchloop, \%branch1 );
+}
+
+my ( $count, $data ) = unfilledreserves($branch);
+
+my @dataloop;
+my $toggle;
+for ( my $i = 0 ; $i < $count ; $i++ ) {
+    my %line;
+    $toggle = $i % 2 ? 0 : 1;
+    $line{'borrowernumber'} = $data->[$i]->{'borrowernumber'};
+    $line{'surname'}        = $data->[$i]->{'surname'};
+    $line{'firstname'}      = $data->[$i]->{'firstname'};
+    $line{'sortdate'}       = $data->[$i]->{'reservedate'};
+    $line{'reservedate'}    = format_date( $data->[$i]->{'reservedate'} );
+    $line{'biblionumber'}   = $data->[$i]->{'biblionumber'};
+    $line{'title'}          = $data->[$i]->{'title'};
+    $line{'classification'} = $data->[$i]->{'classification'};
+    $line{'dewey'}          = $data->[$i]->{'dewey'};
+    $line{'status'}         = $data->[$i]->{'found'};
+    $line{'branchcode'}     = $data->[$i]->{'branchcode'};
+    $line{'itemtype'}       = $data->[$i]->{'itemtype'};
+    $line{'toggle'}         = $toggle;
+    if ( $line{'status'} ne 'W' ) {
+
+        # its not waiting, we need to find if its on issue, or on the shelf
+        if ( $data->[$i]) {
+            # find if its on issue
+#	    warn "constraint:$data->[$i]->{'constrainttype'}\n";
+            my @items = &ItemInfo( undef, $line{'biblionumber'}, 'intra' );
+            my $onissue = 0;
+            foreach my $item (@items) {
+# 		warn $item->{'datedue'};
+                if ( $item->{'datedue'} eq 'Reserved' ) {
+                    $onissue = 0;
+		    if ($item->{'branchname'} eq ''){
+			$line{'status'}='In Transit';
+			}
+		    else {
+
+                    $line{'status'} = "On shelf at $item->{'branchname'}";
+			}
+
+                }
+                else {
+                    $onissue = 1;
+                }
+
+            }
+            if ($onissue) {
+                $line{'status'} = 'On Issue';
+            }
+
+            #	    else {
+
+            #		}
+        }
+        else {
+
+        }
+    }
+    else {
+	$line{'status'}="Waiting for pickup";
+   }
+
+    push( @dataloop, \%line );
+}
+
+if ($sort eq 'name'){
+    @dataloop = sort {$a->{'surname'} cmp $b->{'surname'}} @dataloop;
+}
+elsif ($sort eq 'date'){
+    @dataloop = sort {$a->{'sortdate'} cmp $b->{'sortdate'}} @dataloop;
+}
+elsif ($sort eq 'title'){
+    @dataloop = sort {$a->{'title'} cmp $b->{'title'}} @dataloop;
+}
+else {
+    @dataloop = sort {$a->{'status'} cmp $b->{'status'}} @dataloop;
+}
+
+$template->param(
+    branchcode => $branch,
+    count      => $count,
+    dataloop   => \@dataloop,
+    branchloop => \@branchloop,
+);
+
+output_html_with_http_headers $input, $cookie, $template->output;
+





More information about the Koha-cvs mailing list