Bugzilla – Attachment 161026 Details for
Bug 35807
Update catalog statistics report
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35807: Improve display of appliced filters and results contents
Bug-35807-Improve-display-of-appliced-filters-and-.patch (text/plain), 14.78 KB, created by
Katrin Fischer
on 2024-01-14 11:29:34 UTC
(
hide
)
Description:
Bug 35807: Improve display of appliced filters and results contents
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2024-01-14 11:29:34 UTC
Size:
14.78 KB
patch
obsolete
>From 0fc96cd9dcc1e3cd665e5397ddbae41270731e0d Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sun, 14 Jan 2024 00:24:14 +0000 >Subject: [PATCH] Bug 35807: Improve display of appliced filters and results > contents > >This makes various improvements to the display of the results: > >* Filters now display as a list. >* If codes can be resolved into a description, this is done > in the filters and results table for: > * Home library > * Item types (for both setting of item_level_ityes) > * Collection > * Shelving location > * Not for loan status >* The first cell displays a nice description for row/column > filters that have been selected (X / Y) >* Date formatting is used and date columns sort correctly > for different DateFormat settings > >To test: >* Verify above changes by testing several combinations of > row / column combinations and filters > >Note: The "Count deleted items" option changes the search form > and the data. Everything should still displa nicely if > this is used. > >Note: Removes unused class 'hilighted' used for marking even/uneven > cells in the past. >--- > .../en/modules/reports/catalogue_stats.tt | 103 +++++++++++++++--- > reports/catalogue_stats.pl | 38 +++---- > 2 files changed, 104 insertions(+), 37 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 b112ed67f6..c31e0262e4 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 >@@ -1,5 +1,8 @@ > [% USE raw %] > [% USE Branches %] >+[% USE ItemTypes %] >+[% USE AuthorisedValues %] >+[% USE KohaDates %] > [% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >@@ -46,20 +49,79 @@ > <h1>Catalog statistics</h1> > [% IF ( do_it ) %] > [% FOREACH mainloo IN mainloop %] >- [% IF ( mainloo.loopfilter ) %] >+ [% IF ( mainloo.loopfilter.size > 0 ) %] > <p>Filtered on:</p> >- [% FOREACH loopfilte IN mainloo.loopfilter %] >- <p>[% loopfilte.crit | html %] =[% loopfilte.filter | html %]</p> >- [% END %] >+ <ul> >+ [% FOREACH f IN mainloo.loopfilter %] >+ [% SWITCH f.crit %] >+ [% CASE 'callnum_from' %]<li>Item call number (from): [% f.filter | html %]</li> >+ [% CASE 'callnum_to' %]<li>Item call number (to): [% f.filter | html %]</li> >+ [% CASE 'itype' %]<li>Item type: [% ItemTypes.GetDescription( f.filter ) | html %]</li> >+ [% CASE 'publisher' %]<li>Publisher: [% f.filter | html %]</li> >+ [% CASE 'pubyear_from' %]<li>Publication year (from): [% f.filter | html %]</li> >+ [% CASE 'pubyear_to' %]<li>Publication year (to): [% f.filter | html %]</li> >+ [% CASE 'library' %]<li>Home library: [% Branches.GetName( f.filter ) | html %]</li> >+ [% CASE 'location' %]<li>Shelving location: [% AuthorisedValues.GetByCode('LOC', f.filter) | html %]</li> >+ [% CASE 'collection' %]<li>Collection: [% AuthorisedValues.GetByCode('CCODE', f.filter) | html %]</li> >+ [% CASE 'nfl_status' %]<li>Not for loan: [% AuthorisedValues.GetByCode('NOT_LOAN', f.filter) | html %]</li> >+ [% CASE 'materials' %]<li>Materials specified: [% f.filter | html %]</li> >+ [% CASE 'barcode_unlike' %]<li>Barcode not like: [% f.filter | html %]</li> >+ [% CASE 'barcode_like' %]<li>Barcode like: [% f.filter | html %]</li> >+ [% CASE 'acquired_from' %]<li>Date acquired (from): [% f.filter | $KohaDates %]</li> >+ [% CASE 'acquired_to' %]<li>Date acquired (to): [% f.filter | $KohaDates %]</li> >+ [% CASE 'deleted_from' %]<li>Date deleted (from): [% f.filter | $KohaDates %]</li> >+ [% CASE 'deleted_to' %]<li>Date deleted (to): [% f.filter | $KohaDates %]</li> >+ [% END %] >+ [% END %] >+ </ul> > [% END %] > > <div class="page-section"> > <table id="catalogue_stats"> > <thead> > <tr> >- <th>[% mainloo.line | html %] / [% mainloo.column | html %]</th> >+ [%- BLOCK row_column -%] >+ [%- SWITCH code -%] >+ [%- CASE ['items.itemcallnumber', 'deleteditems.itemcallnumber'] -%]<span>Item call number</span> >+ [%- CASE ['items.itype', 'deleteditems.itype', 'itemtype'] -%]<span>Item type</span> >+ [%- CASE 'publishercode' -%]<span>Publisher</span> >+ [%- CASE ['copyrightdate', 'publicationyear'] -%]<span>Publication year</span> >+ [%- CASE ['items.homebranch', 'deleteditems.homebranch'] -%]<span>Home library</span> >+ [%- CASE ['items.location', 'deleteditems.location'] -%]<span>Shelving location</span> >+ [%- CASE ['items.ccode', 'deleteditems.ccode'] -%]<span>Collection</span> >+ [%- CASE ['items.notforloan', 'deleteditems.notforloan'] -%]<span>Not for loan</span> >+ [%- CASE ['items.materials', 'deleteditems.materials'] -%]<span>Materials specified</span> >+ [%- CASE ['items.dateaccessioned', 'deleteditems.dateaccessioned'] -%]<span>Date acquired</span> >+ [%- CASE 'deleteditems.timestamp' -%]<span>Date deleted</span> >+ [%- CASE -%]<span>[% code | html %]<span> >+ [%- END -%] >+ [%- END -%] >+ [%- BLOCK display_text -%] >+ [%- SWITCH type -%] >+ [%- CASE ['items.itype', 'deleteditems.itype', 'itemtype'] -%][% ItemTypes.GetDescription( code ) | html %] >+ [%- CASE ['items.homebranch', 'deleteditems.homebranch'] -%][% Branches.GetName( code ) | html %] >+ [%- CASE ['items.location', 'deleteditems.location'] -%] >+ [% IF code == "NULL" %] >+ <span>No location</span> >+ [% ELSE %] >+ [% AuthorisedValues.GetByCode('LOC', code) | html %] >+ [% END %] >+ [%- CASE ['items.ccode', 'deleteditems.ccode'] -%] >+ [% IF code == "NULL" %] >+ <span>No collection</span> >+ [% ELSE %] >+ [% AuthorisedValues.GetByCode('CCODE', code) | html %] >+ [% END %] >+ [%- CASE ['items.notforloan', 'deleteditems.notforloan'] -%][% IF code != 0 %][% AuthorisedValues.GetByCode('NOT_LOAN', code) | html %][% END %] >+ [%- CASE ['items.dateaccessioned', 'deleteditems.dateaccessioned', 'deleteditems.timestamp'] -%][% code | $KohaDates %] >+ [%- CASE -%][% IF code == "NULL" %]Empty[% ELSE %][% code | html %][% END %] >+ [%- END -%] >+ [%- END -%] >+ <th>[%- PROCESS row_column code=mainloo.line -%] / [%- PROCESS row_column code=mainloo.column -%]</th> > [% FOREACH loopco IN mainloo.loopcol %] >- <th>[% loopco.coltitle | html %]</th> >+ <th> >+ [%- PROCESS display_text code=loopco.coltitle type=mainloo.column -%] >+ </th> > [% END %] > <th>TOTAL</th> > </tr> >@@ -67,18 +129,23 @@ > <tbody> > [% FOREACH loopro IN mainloo.looprow %] > <tr> >- [% IF ( loopro.hilighted ) %]<td class="hilighted">[% ELSE %]<td>[% END %] >- [% loopro.rowtitle | html %]</td> >- [% FOREACH loopcel IN loopro.loopcell %] >- [% IF ( loopcel.hilighted ) %]<td>[% ELSE %]<td>[% END %] >- [% IF ( loopcel.value ) %] >- [% loopcel.value | html %] >- [% ELSE %] >- >- [% END %] >- </td> >- [% END %] >- [% IF ( loopro.hilighted ) %]<td>[% ELSE %]<td>[% END %] >+ [% IF mainloo.line.search(".dateaccessioned") || mainloo.line == "deleteditems.timestamp" %] >+ <td data-order="[% loopro.rowtitle | html %]"> >+ [% ELSE %] >+ <td> >+ [% END %] >+ [%- PROCESS display_text code=loopro.rowtitle type=mainloo.line -%] >+ </td> >+ [% FOREACH loopcel IN loopro.loopcell %] >+ <td> >+ [% IF ( loopcel.value ) %] >+ [% loopcel.value | html %] >+ [% ELSE %] >+ >+ [% END %] >+ </td> >+ [% END %] >+ <td> > [% loopro.totalrow | html %] > </td> > </tr> >diff --git a/reports/catalogue_stats.pl b/reports/catalogue_stats.pl >index b4d72a384b..51a33e72f4 100755 >--- a/reports/catalogue_stats.pl >+++ b/reports/catalogue_stats.pl >@@ -184,7 +184,7 @@ sub calculate { > # Checking filters > # > my @loopfilter; >- for ( my $i = 0 ; $i <= @$filters ; $i++ ) { >+ foreach my $i ( 0 .. scalar @$filters ) { > my %cell; > if ( defined @$filters[$i] and @$filters[$i] ne '' and $i != 11 ) { > if ( ( ( $i == 1 ) or ( $i == 5 ) ) and ( @$filters[ $i - 1 ] ) ) { >@@ -192,24 +192,24 @@ sub calculate { > } > $cell{filter} .= @$filters[$i]; > $cell{crit} .= >- ( $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 ) ? "Date acquired (item) from" >- : ( $i == 14 ) ? "Date acquired (item) to" >- : ( $i == 15 ) ? "Date deleted (item) from" >- : ( $i == 16 ) ? "Date deleted (item) to" >- : ''; >+ ( $i == 0 ) ? "callnum_from" >+ : ( $i == 1 ) ? "callnum_to" >+ : ( $i == 2 ) ? "itype" >+ : ( $i == 3 ) ? "publisher" >+ : ( $i == 4 ) ? "pubyear_from" >+ : ( $i == 5 ) ? "pubyear_to" >+ : ( $i == 6 ) ? "library" >+ : ( $i == 7 ) ? "location" >+ : ( $i == 8 ) ? "collection" >+ : ( $i == 9 ) ? "nfl_status" >+ : ( $i == 10 ) ? "materials" >+ : ( $i == 12 and $filters->[11] == 0 ) ? "barcode_unlike" >+ : ( $i == 12 and $filters->[11] == 1 ) ? "barcode_like" >+ : ( $i == 13 ) ? "acquired_from" >+ : ( $i == 14 ) ? "acquired_to" >+ : ( $i == 15 ) ? "deleted_from" >+ : ( $i == 16 ) ? "deleted_to" >+ : ''; > > push @loopfilter, \%cell; > } >-- >2.30.2
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 35807
:
161024
|
161025
| 161026