Bugzilla – Attachment 25072 Details for
Bug 7683
statistic wizard: cataloging
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 7683: Remove dead code about dewey and lccn filters
Bug-7683-Remove-dead-code-about-dewey-and-lccn-fil.patch (text/plain), 21.65 KB, created by
Julian Maurice
on 2014-02-06 13:48:47 UTC
(
hide
)
Description:
Bug 7683: Remove dead code about dewey and lccn filters
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2014-02-06 13:48:47 UTC
Size:
21.65 KB
patch
obsolete
>From 10eda1b54157cb2b3d02d8f1432eed877b122aef Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Thu, 6 Feb 2014 14:38:51 +0100 >Subject: [PATCH] Bug 7683: Remove dead code about dewey and lccn filters > >$hasdewey and $haslccn were hardcoded to 0 >--- > .../prog/en/modules/reports/catalogue_stats.tt | 70 ++---- > reports/catalogue_stats.pl | 249 +++++++------------- > 2 files changed, 109 insertions(+), 210 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >index df5bee7..836d1d9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt >@@ -101,10 +101,6 @@ > [% ELSE %] > > <form method="post" action="/cgi-bin/koha/reports/catalogue_stats.pl"> >- <input type="hidden" name="Filter" /> <input type="hidden" name="Filter" /> >- [% UNLESS ( haslccn ) %] >- <input type="hidden" name="Filter" /> <input type="hidden" name="Filter" /> >- [% END %] > <fieldset class="rows"> > <legend>Catalog statistics</legend> > <table> >@@ -117,52 +113,26 @@ > </tr> > </thead> > <tbody> >- [% IF ( haslccn ) %] >- <tr> >- <td>LoC classification</td> >- <td><input type="radio" name="Line" value="lccn" /></td> >- <td><input type="radio" name="Column" value="lccn" /></td> >- <td> <label for="locFrom">From</label> <input type="text" name="Filter" id="locFrom" /> <label for="locTo">To</label> <input type="text" name="Filter" id="locTo" /></td> >- </tr> >- <tr> >- <td> </td> >- <td colspan="2"><select name="lccndigits" id="lccndigits"> >- <option value=""> </option> >- <option value ="1">1</option> >- <option value ="2">2</option> >- <option value ="3">3</option> >- <option value ="4">4</option> >- <option value ="5">5</option> >- </select> >- <label for="lccndigits">characters</label> >- </td> >- <td> </td> >- </tr> >- [% END %] >- [% IF ( hascote ) %] >- <tr> >- <td>Koha full call number</td> >- <td><input type="radio" name="Line" value="items.itemcallnumber" /></td> >- <td><input type="radio" name="Column" value="items.itemcallnumber" /></td> >- <td><label for="callnoFrom">From</label> <input type="text" name="Filter" id="callnoFrom" /> <label for="callnoTo">To</label> <input type="text" name="Filter" id="callnoTo" /></td> >- </tr> >- <tr> >- <td> </td> >- <td colspan="2"><select name="cotedigits" id="cotedigits"> >- <option value=""> </option> >- <option value ="1">1</option> >- <option value ="2">2</option> >- <option value ="3">3</option> >- <option value ="4">4</option> >- <option value ="5">5</option> >- </select> >- <label for="cotedigits">characters</label> >- </td> >- <td> </td> >- </tr> >- [% ELSE %] >- <tr><td colspan="4"><input type="hidden" name="Filter" /> <input type="hidden" name="Filter" /></td></tr> >- [% END %] >+ <tr> >+ <td>Koha full call number</td> >+ <td><input type="radio" name="Line" value="items.itemcallnumber" /></td> >+ <td><input type="radio" name="Column" value="items.itemcallnumber" /></td> >+ <td><label for="callnoFrom">From</label> <input type="text" name="Filter" id="callnoFrom" /> <label for="callnoTo">To</label> <input type="text" name="Filter" id="callnoTo" /></td> >+ </tr> >+ <tr> >+ <td> </td> >+ <td colspan="2"><select name="cotedigits" id="cotedigits"> >+ <option value=""> </option> >+ <option value ="1">1</option> >+ <option value ="2">2</option> >+ <option value ="3">3</option> >+ <option value ="4">4</option> >+ <option value ="5">5</option> >+ </select> >+ <label for="cotedigits">characters</label> >+ </td> >+ <td> </td> >+ </tr> > <tr> > <td>Item type</td> > <td><input type="radio" name="Line" value="[% item_itype %]" /></td> >diff --git a/reports/catalogue_stats.pl b/reports/catalogue_stats.pl >index 54ae927..32dc491 100755 >--- a/reports/catalogue_stats.pl >+++ b/reports/catalogue_stats.pl >@@ -46,8 +46,6 @@ my $line = $input->param("Line"); > my $column = $input->param("Column"); > my $cellvalue = $input->param("Cellvalue"); # one of 'items', 'biblios', 'deleteditems' > my @filters = $input->param("Filter"); >-my $deweydigits = $input->param("deweydigits"); >-my $lccndigits = $input->param("lccndigits"); > my $cotedigits = $input->param("cotedigits"); > my $output = $input->param("output"); > my $basename = $input->param("basename"); >@@ -70,7 +68,7 @@ my ($template, $borrowernumber, $cookie) > }); > $template->param(do_it => $do_it); > if ($do_it) { >- my $results = calculate( $line, $column, $cellvalue, $deweydigits, $lccndigits, $cotedigits, \@filters ); >+ my $results = calculate( $line, $column, $cellvalue, $cotedigits, \@filters ); > if ( $output eq "screen" ) { > $template->param( mainloop => $results ); > output_html_with_http_headers $input, $cookie, $template->output; >@@ -113,36 +111,6 @@ if ($do_it) { > my $count=0; > my $req; > my @select; >- # FIXME: no such field "dewey" >- # $req = $dbh->prepare("select count(dewey) from biblioitems "); >- # $req->execute; >- my $hasdewey = 0; >- >-# (rch) biblioitems.lccn is mapped to lccn MARC21 010$a in default framework. >-# This is not the LC Classification. It's the Control Number. >-# So I'm just going to remove this bit. Call Number is handled in itemcallnumber. >-# >- my $haslccn = 0; >-# $req = $dbh->prepare( "select count(lccn) from biblioitems "); >-# $req->execute; >-# my $hlghtlccn; >-# while (my ($value) =$req->fetchrow) { >-# $hlghtlccn = !($hasdewey); >-# $haslccn =1 if (($value>2) and (! $haslccn)); >-# $count++ if (($value) and (! $haslccn)); >-# push @select, $value; >-# } >-# my $CGIlccn=CGI::scrolling_list( -name => 'Filter', >-# -id => 'Filter', >-# -values => \@select, >-# -size => 1, >-# -multiple => 0 ); >- >-# No need to test for data here. If you don't have itemcallnumbers, you probably know it. >-# FIXME: Hardcoding to 5 chars on itemcallnum. >-# >- my $hascote = 1; >- my $highcote = 5; > > $req = $dbh->prepare("select itemtype, description from itemtypes order by description"); > $req->execute; >@@ -181,9 +149,6 @@ if ($do_it) { > my @mime = ( map { +{type =>$_} } (split /[;:]/, 'CSV') ); # FIXME translation > > $template->param( >- hasdewey => $hasdewey, >- haslccn => $haslccn, >- hascote => $hascote, > CGIItemType => $CGIitemtype, > CGIBranch => GetBranchesLoop( C4::Context->userenv->{'branch'} ), > locationloop => \@locations, >@@ -200,7 +165,7 @@ output_html_with_http_headers $input, $cookie, $template->output; > > > sub calculate { >- my ( $line, $column, $cellvalue, $deweydigits, $lccndigits, $cotedigits, $filters ) = @_; >+ my ( $line, $column, $cellvalue, $cotedigits, $filters ) = @_; > my @mainloop; > my @loopfooter; > my @loopcol; >@@ -233,104 +198,88 @@ sub calculate { > my @loopfilter; > for ( my $i = 0 ; $i <= @$filters ; $i++ ) { > my %cell; >- if ( defined @$filters[$i] and @$filters[$i] ne '' and $i != 15 ) { >- if ( ( ( $i == 1 ) or ( $i == 3 ) or ( $i == 5 ) or ( $i == 9 ) ) and ( @$filters[ $i - 1 ] ) ) { >+ if ( defined @$filters[$i] and @$filters[$i] ne '' and $i != 11 ) { >+ if ( ( ( $i == 1 ) or ( $i == 5 ) ) and ( @$filters[ $i - 1 ] ) ) { > $cell{err} = 1 if ( @$filters[$i] < @$filters[ $i - 1 ] ); > } > $cell{filter} .= @$filters[$i]; > $cell{crit} .= >- ( $i == 0 ) ? "Dewey Classification From" >- : ( $i == 1 ) ? "Dewey Classification To" >- : ( $i == 2 ) ? "Lccn Classification From" >- : ( $i == 3 ) ? "Lccn Classification To" >- : ( $i == 4 ) ? "Item CallNumber From" >- : ( $i == 5 ) ? "Item CallNumber To" >- : ( $i == 6 ) ? "Item type" >- : ( $i == 7 ) ? "Publisher" >- : ( $i == 8 ) ? "Publication year From" >- : ( $i == 9 ) ? "Publication year To" >- : ( $i == 10 ) ? "Library" >- : ( $i == 11 ) ? "Shelving Location" >- : ( $i == 12 ) ? "Collection Code" >- : ( $i == 13 ) ? "Status" >- : ( $i == 14 ) ? "Materials" >- : ( $i == 16 and $filters->[15] == 0 ) ? "Barcode (not like)" >- : ( $i == 16 and $filters->[15] == 1 ) ? "Barcode (like)" >- : ( $i == 17 ) ? "Acquired date from" >- : ( $i == 18 ) ? "Acquired date to" >- : ( $i == 19 ) ? "Removed date from" >- : ( $i == 20 ) ? "Removed date to" >+ ( $i == 0 ) ? "Item CallNumber From" >+ : ( $i == 1 ) ? "Item CallNumber To" >+ : ( $i == 2 ) ? "Item type" >+ : ( $i == 3 ) ? "Publisher" >+ : ( $i == 4 ) ? "Publication year From" >+ : ( $i == 5 ) ? "Publication year To" >+ : ( $i == 6 ) ? "Library" >+ : ( $i == 7 ) ? "Shelving Location" >+ : ( $i == 8 ) ? "Collection Code" >+ : ( $i == 9 ) ? "Status" >+ : ( $i == 10 ) ? "Materials" >+ : ( $i == 12 and $filters->[11] == 0 ) ? "Barcode (not like)" >+ : ( $i == 12 and $filters->[11] == 1 ) ? "Barcode (like)" >+ : ( $i == 13 ) ? "Acquired date from" >+ : ( $i == 14 ) ? "Acquired date to" >+ : ( $i == 15 ) ? "Removed date from" >+ : ( $i == 16 ) ? "Removed date to" > : ''; > > push @loopfilter, \%cell; > } > } > >- @$filters[18] = C4::Dates->new(@$filters[18])->output('iso') if @$filters[18]; >- @$filters[19] = C4::Dates->new(@$filters[19])->output('iso') if @$filters[19]; >- @$filters[20] = C4::Dates->new(@$filters[20])->output('iso') if @$filters[20]; >- @$filters[21] = C4::Dates->new(@$filters[21])->output('iso') if @$filters[21]; >+ @$filters[14] = C4::Dates->new(@$filters[14])->output('iso') if @$filters[14]; >+ @$filters[15] = C4::Dates->new(@$filters[15])->output('iso') if @$filters[15]; >+ @$filters[16] = C4::Dates->new(@$filters[16])->output('iso') if @$filters[16]; >+ @$filters[17] = C4::Dates->new(@$filters[17])->output('iso') if @$filters[17]; > > my @linefilter; >- $linefilter[0] = @$filters[0] if ( $line =~ /dewey/ ); >- $linefilter[1] = @$filters[1] if ( $line =~ /dewey/ ); >- $linefilter[0] = @$filters[2] if ( $line =~ /lccn/ ); >- $linefilter[1] = @$filters[3] if ( $line =~ /lccn/ ); >- $linefilter[0] = @$filters[4] if ( $line =~ /items\.itemcallnumber/ ); >- $linefilter[1] = @$filters[5] if ( $line =~ /items\.itemcallnumber/ ); >+ $linefilter[0] = @$filters[0] if ( $line =~ /items\.itemcallnumber/ ); >+ $linefilter[1] = @$filters[1] if ( $line =~ /items\.itemcallnumber/ ); > if ( C4::Context->preference('item-level_itypes') ) { >- $linefilter[0] = @$filters[6] if ( $line =~ /items\.itype/ ); >+ $linefilter[0] = @$filters[2] if ( $line =~ /items\.itype/ ); > } else { >- $linefilter[0] = @$filters[6] if ( $line =~ /itemtype/ ); >- } >- $linefilter[0] = @$filters[7] if ( $line =~ /publishercode/ ); >- $linefilter[0] = @$filters[8] if ( $line =~ /publicationyear/ ); >- $linefilter[1] = @$filters[9] if ( $line =~ /publicationyear/ ); >- >- $linefilter[0] = @$filters[10] if ( $line =~ /items\.homebranch/ ); >- $linefilter[0] = @$filters[11] if ( $line =~ /items\.location/ ); >- $linefilter[0] = @$filters[12] if ( $line =~ /items\.ccode/ ); >- $linefilter[0] = @$filters[13] if ( $line =~ /items\.notforloan/ ); >- $linefilter[0] = @$filters[14] if ( $line =~ /items\.materials/ ); >- $linefilter[0] = @$filters[17] if ( $line =~ /items\.dateaccessioned/ ); >- $linefilter[1] = @$filters[18] if ( $line =~ /items\.dateaccessioned/ ); >- $linefilter[0] = @$filters[19] if ( $line =~ /deleteditems\.timestamp/ ); >- $linefilter[1] = @$filters[20] if ( $line =~ /deleteditems\.timestamp/ ); >+ $linefilter[0] = @$filters[2] if ( $line =~ /itemtype/ ); >+ } >+ $linefilter[0] = @$filters[3] if ( $line =~ /publishercode/ ); >+ $linefilter[0] = @$filters[4] if ( $line =~ /publicationyear/ ); >+ $linefilter[1] = @$filters[5] if ( $line =~ /publicationyear/ ); >+ >+ $linefilter[0] = @$filters[6] if ( $line =~ /items\.homebranch/ ); >+ $linefilter[0] = @$filters[7] if ( $line =~ /items\.location/ ); >+ $linefilter[0] = @$filters[8] if ( $line =~ /items\.ccode/ ); >+ $linefilter[0] = @$filters[9] if ( $line =~ /items\.notforloan/ ); >+ $linefilter[0] = @$filters[10] if ( $line =~ /items\.materials/ ); >+ $linefilter[0] = @$filters[13] if ( $line =~ /items\.dateaccessioned/ ); >+ $linefilter[1] = @$filters[14] if ( $line =~ /items\.dateaccessioned/ ); >+ $linefilter[0] = @$filters[15] if ( $line =~ /deleteditems\.timestamp/ ); >+ $linefilter[1] = @$filters[16] if ( $line =~ /deleteditems\.timestamp/ ); > > my @colfilter; >- $colfilter[0] = @$filters[0] if ( $column =~ /dewey/ ); >- $colfilter[1] = @$filters[1] if ( $column =~ /dewey/ ); >- $colfilter[0] = @$filters[2] if ( $column =~ /lccn/ ); >- $colfilter[1] = @$filters[3] if ( $column =~ /lccn/ ); >- $colfilter[0] = @$filters[4] if ( $column =~ /items\.itemcallnumber/ ); >- $colfilter[1] = @$filters[5] if ( $column =~ /items\.itemcallnumber/ ); >+ $colfilter[0] = @$filters[0] if ( $column =~ /items\.itemcallnumber/ ); >+ $colfilter[1] = @$filters[1] if ( $column =~ /items\.itemcallnumber/ ); > if ( C4::Context->preference('item-level_itypes') ) { >- $colfilter[0] = @$filters[6] if ( $column =~ /items\.itype/ ); >+ $colfilter[0] = @$filters[2] if ( $column =~ /items\.itype/ ); > } else { >- $colfilter[0] = @$filters[6] if ( $column =~ /itemtype/ ); >- } >- $colfilter[0] = @$filters[7] if ( $column =~ /publishercode/ ); >- $colfilter[0] = @$filters[8] if ( $column =~ /publicationyear/ ); >- $colfilter[1] = @$filters[9] if ( $column =~ /publicationyear/ ); >- $colfilter[0] = @$filters[10] if ( $column =~ /items\.homebranch/ ); >- $colfilter[0] = @$filters[11] if ( $column =~ /items\.location/ ); >- $colfilter[0] = @$filters[12] if ( $column =~ /items\.ccode/ ); >- $colfilter[0] = @$filters[13] if ( $column =~ /items\.notforloan/ ); >- $colfilter[0] = @$filters[14] if ( $column =~ /items\.materials/ ); >- $colfilter[0] = @$filters[17] if ( $column =~ /items.dateaccessioned/ ); >- $colfilter[1] = @$filters[18] if ( $column =~ /items\.dateaccessioned/ ); >- $colfilter[0] = @$filters[19] if ( $column =~ /deleteditems\.timestamp/ ); >- $colfilter[1] = @$filters[20] if ( $column =~ /deleteditems\.timestamp/ ); >+ $colfilter[0] = @$filters[2] if ( $column =~ /itemtype/ ); >+ } >+ $colfilter[0] = @$filters[3] if ( $column =~ /publishercode/ ); >+ $colfilter[0] = @$filters[4] if ( $column =~ /publicationyear/ ); >+ $colfilter[1] = @$filters[5] if ( $column =~ /publicationyear/ ); >+ $colfilter[0] = @$filters[6] if ( $column =~ /items\.homebranch/ ); >+ $colfilter[0] = @$filters[7] if ( $column =~ /items\.location/ ); >+ $colfilter[0] = @$filters[8] if ( $column =~ /items\.ccode/ ); >+ $colfilter[0] = @$filters[9] if ( $column =~ /items\.notforloan/ ); >+ $colfilter[0] = @$filters[10] if ( $column =~ /items\.materials/ ); >+ $colfilter[0] = @$filters[13] if ( $column =~ /items.dateaccessioned/ ); >+ $colfilter[1] = @$filters[14] if ( $column =~ /items\.dateaccessioned/ ); >+ $colfilter[0] = @$filters[15] if ( $column =~ /deleteditems\.timestamp/ ); >+ $colfilter[1] = @$filters[16] if ( $column =~ /deleteditems\.timestamp/ ); > > # 1st, loop rows. > my $origline = $line; > $line =~ s/^items\./deleteditems./ if($cellvalue eq "deleteditems"); > my $linefield; >- if ( ( $line =~ /dewey/ ) and ($deweydigits) ) { >- $linefield = "left($line,$deweydigits)"; >- } elsif ( ( $line =~ /lccn/ ) and ($lccndigits) ) { >- $linefield = "left($line,$lccndigits)"; >- } elsif ( ( $line =~ /itemcallnumber/ ) and ($cotedigits) ) { >+ if ( ( $line =~ /itemcallnumber/ ) and ($cotedigits) ) { > $linefield = "left($line,$cotedigits)"; > } elsif ( $line =~ /^deleteditems\.timestamp$/ ) { > $linefield = "DATE($line)"; >@@ -391,11 +340,7 @@ sub calculate { > my $origcolumn = $column; > $column =~ s/^items\./deleteditems./ if($cellvalue eq "deleteditems"); > my $colfield; >- if ( ( $column =~ /dewey/ ) and ($deweydigits) ) { >- $colfield = "left($column,$deweydigits)"; >- } elsif ( ( $column =~ /lccn/ ) and ($lccndigits) ) { >- $colfield = "left($column,$lccndigits)"; >- } elsif ( ( $column =~ /itemcallnumber/ ) and ($cotedigits) ) { >+ if ( ( $column =~ /itemcallnumber/ ) and ($cotedigits) ) { > $colfield = "left($column,$cotedigits)"; > } elsif ( $column =~ /^deleteditems\.timestamp$/ ) { > $colfield = "DATE($column)"; >@@ -474,83 +419,67 @@ sub calculate { > > if ( @$filters[0] ) { > @$filters[0] =~ s/\*/%/g; >- $strcalc .= " AND dewey >" . @$filters[0]; >+ $strcalc .= " AND $itemstable.itemcallnumber >=" . $dbh->quote( @$filters[0] ); > } >+ > if ( @$filters[1] ) { > @$filters[1] =~ s/\*/%/g; >- $strcalc .= " AND dewey <" . @$filters[1]; >+ $strcalc .= " AND $itemstable.itemcallnumber <=" . $dbh->quote( @$filters[1] ); > } >+ > if ( @$filters[2] ) { > @$filters[2] =~ s/\*/%/g; >- $strcalc .= " AND lccn >" . @$filters[2]; >+ $strcalc .= " AND " . ( C4::Context->preference('item-level_itypes') ? "$itemstable.itype" : 'biblioitems.itemtype' ) . " LIKE '" . @$filters[2] . "'"; > } >+ > if ( @$filters[3] ) { > @$filters[3] =~ s/\*/%/g; >- $strcalc .= " AND lccn <" . @$filters[3]; >+ @$filters[3] .= "%" unless @$filters[3] =~ /%/; >+ $strcalc .= " AND biblioitems.publishercode LIKE \"" . @$filters[3] . "\""; > } > if ( @$filters[4] ) { > @$filters[4] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.itemcallnumber >=" . $dbh->quote( @$filters[4] ); >+ $strcalc .= " AND publicationyear >" . @$filters[4]; > } >- > if ( @$filters[5] ) { > @$filters[5] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.itemcallnumber <=" . $dbh->quote( @$filters[5] ); >+ $strcalc .= " AND publicationyear <" . @$filters[5]; > } >- > if ( @$filters[6] ) { > @$filters[6] =~ s/\*/%/g; >- $strcalc .= " AND " . ( C4::Context->preference('item-level_itypes') ? "$itemstable.itype" : 'biblioitems.itemtype' ) . " LIKE '" . @$filters[6] . "'"; >+ $strcalc .= " AND $itemstable.homebranch LIKE '" . @$filters[6] . "'"; > } >- > if ( @$filters[7] ) { > @$filters[7] =~ s/\*/%/g; >- @$filters[7] .= "%" unless @$filters[7] =~ /%/; >- $strcalc .= " AND biblioitems.publishercode LIKE \"" . @$filters[7] . "\""; >+ $strcalc .= " AND $itemstable.location LIKE '" . @$filters[7] . "'"; > } > if ( @$filters[8] ) { > @$filters[8] =~ s/\*/%/g; >- $strcalc .= " AND publicationyear >" . @$filters[8]; >+ $strcalc .= " AND $itemstable.ccode LIKE '" . @$filters[8] . "'"; > } >- if ( @$filters[9] ) { >+ if ( defined @$filters[9] and @$filters[9] ne '' ) { > @$filters[9] =~ s/\*/%/g; >- $strcalc .= " AND publicationyear <" . @$filters[9]; >+ $strcalc .= " AND $itemstable.notforloan LIKE '" . @$filters[13] . "'"; > } >- if ( @$filters[10] ) { >+ if ( defined @$filters[10] and @$filters[10] ne '' ) { > @$filters[10] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.homebranch LIKE '" . @$filters[10] . "'"; >- } >- if ( @$filters[11] ) { >- @$filters[11] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.location LIKE '" . @$filters[11] . "'"; >- } >- if ( @$filters[12] ) { >- @$filters[12] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.ccode LIKE '" . @$filters[12] . "'"; >+ $strcalc .= " AND $itemstable.materials LIKE '" . @$filters[10] . "'"; > } >- if ( defined @$filters[13] and @$filters[13] ne '' ) { >+ if ( @$filters[13] ) { > @$filters[13] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.notforloan LIKE '" . @$filters[13] . "'"; >+ $strcalc .= " AND $itemstable.dateaccessioned >= '@$filters[13]' "; > } >- if ( defined @$filters[14] and @$filters[14] ne '' ) { >+ if ( @$filters[14] ) { > @$filters[14] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.materials LIKE '" . @$filters[14] . "'"; >- } >- if ( @$filters[17] ) { >- @$filters[17] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.dateaccessioned >= '@$filters[17]' "; >- } >- if ( @$filters[18] ) { >- @$filters[18] =~ s/\*/%/g; >- $strcalc .= " AND $itemstable.dateaccessioned <= '@$filters[18]' "; >+ $strcalc .= " AND $itemstable.dateaccessioned <= '@$filters[14]' "; > } >- if ( $cellvalue eq 'deleteditems' and @$filters[19] ) { >- @$filters[19] =~ s/\*/%/g; >- $strcalc .= " AND DATE(deleteditems.timestamp) >= '@$filters[19]' "; >+ if ( $cellvalue eq 'deleteditems' and @$filters[15] ) { >+ @$filters[15] =~ s/\*/%/g; >+ $strcalc .= " AND DATE(deleteditems.timestamp) >= '@$filters[15]' "; > } >- if ( $cellvalue eq 'deleteditems' and @$filters[20] ) { >- @$filters[20] =~ s/\*/%/g; >- $strcalc .= " AND DATE(deleteditems.timestamp) <= '@$filters[20]' "; >+ if ( $cellvalue eq 'deleteditems' and @$filters[16] ) { >+ @$filters[16] =~ s/\*/%/g; >+ $strcalc .= " AND DATE(deleteditems.timestamp) <= '@$filters[16]' "; > } > $strcalc .= " group by $linefield, $colfield order by $linefield,$colfield"; > $debug and warn "SQL: $strcalc"; >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7683
:
12762
|
12785
|
12940
|
14399
|
14466
|
16327
|
16328
|
16329
|
16367
|
16775
|
20241
|
20242
|
20243
|
20244
|
20245
|
21357
|
21358
|
23683
|
23684
|
23685
|
23686
|
23687
|
23688
|
23689
|
23690
|
23691
|
25072
|
25073
|
25091
|
25092
|
25093
|
25094
|
25095
|
25096
|
25097
|
25098
|
25099
|
25100
|
26678
|
26679
|
26680
|
26681
|
26682
|
28466
|
28467
|
28468
|
28469
|
28470
|
36489
|
36490
|
36491
|
36492
|
36493
|
39129
|
39130
|
39131
|
39132
|
39133
|
41821
|
41829
|
44651
|
44652
|
44653
|
44654
|
44655
|
45238
|
45239
|
45240
|
45241
|
45242