[Koha-cvs] CVS: koha/reports acquisitions_stats.pl,1.4,1.5 bor_issues_top.pl,1.3,1.4 borrowers_out.pl,1.1,1.2 borrowers_stats.pl,1.7,1.8 cat_issues_top.pl,1.5,1.6 catalogue_out.pl,1.1,1.2 catalogue_stats.pl,1.11,1.12 issues_avg_stats.pl,1.2,1.3 itemtypes.plugin,1.1,1.2

Paul POULAIN tipaul at users.sourceforge.net
Wed May 4 11:02:44 CEST 2005


Update of /cvsroot/koha/koha/reports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21308/reports

Modified Files:
	acquisitions_stats.pl bor_issues_top.pl borrowers_out.pl 
	borrowers_stats.pl cat_issues_top.pl catalogue_out.pl 
	catalogue_stats.pl issues_avg_stats.pl itemtypes.plugin 
Log Message:
synch'ing 2.2 and head







Index: catalogue_stats.pl
===================================================================
RCS file: /cvsroot/koha/koha/reports/catalogue_stats.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** catalogue_stats.pl	29 Mar 2005 14:21:37 -0000	1.11
--- catalogue_stats.pl	4 May 2005 09:02:39 -0000	1.12
***************
*** 183,187 ****
  	}
  	my $CGIitemtype=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'Filter',
  				-values   => \@select,
  				-size     => 1,
--- 183,187 ----
  	}
  	my $CGIitemtype=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'itemtype',
  				-values   => \@select,
  				-size     => 1,
***************
*** 211,215 ****
  	}
  	my $CGIbranch=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'Filter',
  				-values   => \@select,
  				-labels   => \%select_branches,
--- 211,215 ----
  	}
  	my $CGIbranch=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'branch',
  				-values   => \@select,
  				-labels   => \%select_branches,
***************
*** 222,226 ****
  	push @select,"";
  	my $CGIlocation=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'Filter',
  				-values   => \@select,
  				-size     => 1,
--- 222,226 ----
  	push @select,"";
  	my $CGIlocation=CGI::scrolling_list( -name     => 'Filter',
! 				-id => 'location',
  				-values   => \@select,
  				-size     => 1,


Index: itemtypes.plugin
===================================================================
RCS file: /cvsroot/koha/koha/reports/itemtypes.plugin,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** itemtypes.plugin	30 Mar 2004 16:09:04 -0000	1.1
--- itemtypes.plugin	4 May 2005 09:02:40 -0000	1.2
***************
*** 74,83 ****
--- 74,90 ----
  	my ($description,$biblioitems,$total);
  	my $grantotal = 0;
+ 	my $count = 0;
  	while (($description,$biblioitems,$total) = $sth->fetchrow) {
  		my %line;
+ 		if($count % 2){
+ 			$line{toggle} = 1;
+ 			} else {
+ 				$line{toggle} = 0;
+ 			}
  		$line{itemtype} = $description;
  		$line{count} = $total;
  		$grantotal += $total;
  		push @results,\%line;
+ 		$count ++;
  	}
  	my @mainloop;





More information about the Koha-cvs mailing list