[koha-commits] main Koha release repository branch master updated. v3.22.00-205-g29b605e

Git repo owner gitmaster at git.koha-community.org
Thu Dec 31 17:14:32 CET 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  29b605eb1eeb1fa6d0539a1cf6303e13253e6f0a (commit)
       via  cf529864ce168f0a2e446732f59d18ff7dfdea6f (commit)
      from  d5e946d0edbfcb3a34179b51a0ead5075876fcf9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 29b605eb1eeb1fa6d0539a1cf6303e13253e6f0a
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Tue Dec 1 00:47:54 2015 +0100

    Bug 10154: QA follow-up - Spelling and terminology
    
    - Changing capitalization: Any Patron category > Any patron category
    - Changing Collection code > Collection
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit cf529864ce168f0a2e446732f59d18ff7dfdea6f
Author: Eivin Giske Skaaren <eivin at sysmystic.com>
Date:   Wed Oct 28 00:28:28 2015 +0000

    Bug 10154 Add Call number in the filter of most circulated items
    
    This patch adds call number, collection code and shelving location to
    the filter.
    
    To test:
    
    It is of course a prerequisite to have items in the DB with the correct
    MARC fields and that they have been checked out etc. to get a valid
    result when testing.
    
    1. Apply patch to koha synced to master.
    2. Go to /cgi-bin/koha/reports/cat_issues_top.pl
    3. Select filters, the new ones are Call number, Collection code and
       Shelving location
    4. Hit submit.
    
    Expected result:
    The filters chosen will be printed under "Filtered on".
    A table with the result is shown.
    
    For manual verification here is some SQL to run:
    
    SELECT DISTINCT biblio.title, COUNT(biblio.biblionumber) AS RANK, biblio.biblionumber AS ID, itemcallnumber as CALLNUM, ccode as CCODE, location as LOC FROM `old_issues`
                      LEFT JOIN items USING(itemnumber)
                      LEFT JOIN biblio USING(biblionumber)
                      LEFT JOIN biblioitems USING(biblionumber)
                      LEFT JOIN borrowers USING(borrowernumber)
                      WHERE 1 AND biblioitems.itemtype like 'BK' AND itemcallnumber like '005.2/762' AND ccode like 'NFIC' AND location like 'CART' AND borrowers.categorycode like 'PT' group by biblio.biblionumber order by RANK DESC;
    
    Put in your valid values in the WHERE clause for the values in the
    single quotes ''.
    
    Sponsored-by: Halland county library
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
      It works as described. Valid results, tested in various combinations.
      Follows the coding (awful) style of the original script, without
      introducing any regression. It would have been great to have
      callnumber interval, but anyway...
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

-----------------------------------------------------------------------

Summary of changes:
 .../prog/en/modules/reports/cat_issues_top.tt      |   19 +++++-
 reports/cat_issues_top.pl                          |   72 ++++++++++++++++----
 2 files changed, 75 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list