From cf709814993e0eb2a3226e19217e459b4d68b82f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 26 Nov 2015 00:29:34 +0100 Subject: [PATCH] Bug 15216: Returns - Show collection description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The table of returns displays the collection code instead of the description. This patch fixes that. Same as first patch: To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Marc VĂ©ron --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index 3762e32..8938e2e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -588,7 +588,7 @@ $(document).ready(function () { [% Branches.GetName( riloo.holdingbranch ) %] [% riloo.location %] [% riloo.itemcallnumber %] - [% ItemTypes.GetDescription( riloo.itemtype ) %] [% riloo.ccode %] + [% ItemTypes.GetDescription( riloo.itemtype ) %] [% AuthorisedValues.GetByCode('CCODE', riloo.ccode) %] [% IF ( riloo.duedate ) %] [% riloo.borsurname %], [% riloo.borfirstname %] ([% riloo.borcategorycode %]) -- 1.7.10.4