[Koha-cvs] koha/reports reservereport.pl

Chris Cormack chris at katipo.co.nz
Wed Jun 7 06:34:21 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Chris Cormack <rangi>	06/06/07 04:34:21

Modified files:
	reports        : reservereport.pl 

Log message:
	Merging in some more changes to allow to resort the reserve list

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/reports/reservereport.pl?cvsroot=koha&r1=1.7&r2=1.8

Patches:
Index: reservereport.pl
===================================================================
RCS file: /sources/koha/koha/reports/reservereport.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- reservereport.pl	7 Jun 2006 03:18:55 -0000	1.7
+++ reservereport.pl	7 Jun 2006 04:34:21 -0000	1.8
@@ -37,6 +37,8 @@
 my $input = new CGI;
 my $time  = $input->param('time');
 my $branch = $input->param('branch');
+my $sort = $input->param('sort');
+
 if (!$branch) {
     $branch = "ALL";
 }
@@ -78,6 +80,7 @@
 	$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'};
@@ -86,10 +89,55 @@
         $line{'status'} = $data->[$i]->{'found'};
         $line{'branchcode'} = $data->[$i]->{'branchcode'};
 	$line{'toggle'} = $toggle;
+     if ( $line{'status'} ne 'W' ) {
+	 
+	 # its not waiting, we need to find if its on issue, or on the shelf
+	 # FIXME still need to shift the text to the template so its translateable
+	 if ( $data->[$i]) {
+	     # find if its on issue
+	     my @items = &ItemInfo( undef, $line{'biblionumber'}, 'intra' );
+	     my $onissue = 0;
+	     foreach my $item (@items) {
+		 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 {
+	     $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(
     count    => $count,





More information about the Koha-cvs mailing list