koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/reports catalogue_stats.pl,1.10.2.3,1.10.2.4


From: Henri-Damien LAURENT
Subject: [Koha-cvs] CVS: koha/reports catalogue_stats.pl,1.10.2.3,1.10.2.4
Date: Tue, 02 Aug 2005 08:53:42 -0700

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

Modified Files:
      Tag: rel_2_2
        catalogue_stats.pl 
Log Message:
Bug Fixing :
Using items.location where items.holdingbranch should have been used.

Index: catalogue_stats.pl
===================================================================
RCS file: /cvsroot/koha/koha/reports/catalogue_stats.pl,v
retrieving revision 1.10.2.3
retrieving revision 1.10.2.4
diff -C2 -r1.10.2.3 -r1.10.2.4
*** catalogue_stats.pl  7 Apr 2005 12:18:43 -0000       1.10.2.3
--- catalogue_stats.pl  2 Aug 2005 15:53:40 -0000       1.10.2.4
***************
*** 217,226 ****
                                -multiple => 0 );
        
!       $req = $dbh->prepare("select distinctrow location from items order by 
location");
        $req->execute;
        undef @select;
        push @select,"";
        my $CGIlocation=CGI::scrolling_list( -name     => 'Filter',
!                               -id => 'location',
                                -values   => address@hidden,
                                -size     => 1,
--- 217,226 ----
                                -multiple => 0 );
        
!       $req = $dbh->prepare("select distinctrow holdingbranch from items order 
by holdingbranch");
        $req->execute;
        undef @select;
        push @select,"";
        my $CGIlocation=CGI::scrolling_list( -name     => 'Filter',
!                               -id => 'holdingbranch',
                                -values   => address@hidden,
                                -size     => 1,
***************
*** 334,338 ****
        $linefilter[1] = @$filters[9] if ($line =~ /publicationyear/ ) ;
        @linefilter[0] = @$filters[10] if ($line =~ /items.homebranch/ ) ;
!       @linefilter[0] = @$filters[11] if ($line =~ /items.location/ ) ;
  # 
        my @colfilter ;
--- 334,338 ----
        $linefilter[1] = @$filters[9] if ($line =~ /publicationyear/ ) ;
        @linefilter[0] = @$filters[10] if ($line =~ /items.homebranch/ ) ;
!       @linefilter[0] = @$filters[11] if ($line =~ /items.holdingbranch/ ) ;
  # 
        my @colfilter ;
***************
*** 348,352 ****
        $colfilter[1] = @$filters[9] if ($column =~ /publicationyear/ ) ;
        @colfilter[0] = @$filters[10] if ($column =~ /items.homebranch/ ) ;
!       @colfilter[0] = @$filters[11] if ($column =~ /items.location/ ) ;
  
  # 1st, loop rows.
--- 348,352 ----
        $colfilter[1] = @$filters[9] if ($column =~ /publicationyear/ ) ;
        @colfilter[0] = @$filters[10] if ($column =~ /items.homebranch/ ) ;
!       @colfilter[0] = @$filters[11] if ($column =~ /items.holdingbranch/ ) ;
  
  # 1st, loop rows.
***************
*** 560,566 ****
                @$filters[11]=~ s/\*/%/g;
                if ($cond){
!                       $strcalc .= " AND items.location like '" . 
@$filters[11] ."'" if ( @$filters[11] );
                } else {
!                       $strcalc .= " WHERE items.location like '" . 
@$filters[11] ."'" if ( @$filters[11] );
                }
        }
--- 560,566 ----
                @$filters[11]=~ s/\*/%/g;
                if ($cond){
!                       $strcalc .= " AND items.holdingbranch like '" . 
@$filters[11] ."'" if ( @$filters[11] );
                } else {
!                       $strcalc .= " WHERE items.holdingbranch like '" . 
@$filters[11] ."'" if ( @$filters[11] );
                }
        }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]