From c1a6bc8eb01e894e312e525c2492aa33288455b7 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 17 Jul 2015 07:37:33 -0400 Subject: [PATCH] Bug 14557 - Add holds count to holds tab Some librarians have expressed that it would be helpful if the holds tab displayed the count of holds for a record. Test Plan: 1) Apply this patch 2) Note the Holds tab for a record now displays the number of holds for that record --- Koha/Template/Plugin/Biblio.pm | 35 ++++++++++++++++++++ .../prog/en/includes/biblio-view-menu.inc | 3 +- 2 files changed, 37 insertions(+), 1 deletions(-) create mode 100644 Koha/Template/Plugin/Biblio.pm diff --git a/Koha/Template/Plugin/Biblio.pm b/Koha/Template/Plugin/Biblio.pm new file mode 100644 index 0000000..3f9cc4f --- /dev/null +++ b/Koha/Template/Plugin/Biblio.pm @@ -0,0 +1,35 @@ +package Koha::Template::Plugin::Biblio; + +# Copyright ByWater Solutions 2015 + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Template::Plugin; +use base qw( Template::Plugin ); + +use Koha::Holds; + +sub HoldsCount { + my ( $self, $biblionumber ) = @_; + + my $holds = Koha::Holds->search( { biblionumber => $biblionumber } ); + + return $holds->count(); +} + +1; diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc index 158827f..4258aa3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -1,3 +1,4 @@ +[% USE Biblio %] [% SET biblio_object_id = object || biblionumber %]