From f735e5f66792205a1dc5b62de9d79c3bac95d25a Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 13 Feb 2017 16:39:41 +1100 Subject: [PATCH] Bug 18099 - Put call number in its own column on inventory screen TEST PLAN 0) Apply patch 1) Create an item with a call number in 952$o (e.g. ABC 123) 2) Using the inventory tool, make sure you "Select items you want to check" which include that item (e.g. Item callnumber between: A and C) 3) Click "Submit" 4) The call number appears in the column marked "Call number" instead of appearing as [ABC 123] under the library in the "Library" column --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index b682d55..a76fdef 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -242,6 +242,7 @@ $(document).ready(function(){ [% UNLESS compareinv2barcd %]Seen[% END %] Barcode + Call number Library Title Status @@ -263,9 +264,10 @@ $(document).ready(function(){ [% result.barcode | html %] + [% result.itemcallnumber | html %] [% Branches.GetName( result.homebranch ) %] - [% result.location | html %] [% IF ( result.itemcallnumber ) %][[% result.itemcallnumber | html %]][% ELSE %][% END %] + [% result.location | html %]

[% result.title | html %]

[% result.author | html %]

-- 2.10.2