Koha/koha-tmpl/intranet-tmpl/prog/en/modules/reports
Eivin Giske Skaaren cf529864ce 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@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@web.de>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
2015-12-31 16:16:10 +00:00
..
acquisitions_stats.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
bor_issues_top.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
borrowers_out.tt
borrowers_stats.tt Bug 15373: More changes of Zip to ZIP on intranet 2015-12-30 16:30:35 +00:00
cat_issues_top.tt Bug 10154 Add Call number in the filter of most circulated items 2015-12-31 16:16:10 +00:00
catalogue_out.tt
catalogue_stats.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
dictionary.tt
guided_reports_start.tt Bug 15321: No need to add the change trigger conditionally 2015-12-31 15:44:29 +00:00
issues_avg_stats.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
issues_by_borrower_category.tt
issues_stats.tt
itemslost.tt
itemtypes.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
reports-home.tt
reserves_stats.tt
serials_stats.tt
stats_screen.tt