Bugzilla – Attachment 51817 Details for
Bug 16596
branchcode and categorycode are displayed instead of their description on patron search result
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16596: Display library and patron category descriptions instead of their code
Bug-16596-Display-library-and-patron-category-desc.patch (text/plain), 2.59 KB, created by
Jonathan Druart
on 2016-05-26 09:57:04 UTC
(
hide
)
Description:
Bug 16596: Display library and patron category descriptions instead of their code
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-05-26 09:57:04 UTC
Size:
2.59 KB
patch
obsolete
>From f5ecf92c1082e3dbddee425915b84ca1b9a08378 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 26 May 2016 10:55:09 +0100 >Subject: [PATCH] Bug 16596: Display library and patron category descriptions > instead of their code > >Test plan: >On circ/circulation-home.pl and reserve/request.pl, search for patrons >The descriptions for the libraries and patron categories should be >displayed. >--- > .../intranet-tmpl/prog/en/includes/circ-patron-search-results.inc | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + > koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 ++ > 3 files changed, 5 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc >index c60395b..cdd377c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc >@@ -31,8 +31,8 @@ > <td><a href="/cgi-bin/koha/reserve/request.pl?borrowernumber=[% borrower.borrowernumber %]&biblionumber=[% biblionumber %]">[% borrower.surname %], [% borrower.firstname %]</a></td> > [% END %] > <td>[% borrower.cardnumber %]</td> >- <td>[% borrower.categorycode %]</td> >- <td>[% borrower.branchcode %]</td> >+ <td>[% Categories.GetName( borrower.categorycode ) %]</td> >+ <td>[% Branches.GetName( borrower.branchcode ) %]</td> > <td>[% borrower.address %]</td> > </tr> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index b653762..dde7a74 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -1,6 +1,7 @@ > [% USE Koha %] > [% USE Branches %] > [% USE KohaDates %] >+[% USE Categories %] > [% USE ColumnsSettings %] > [% USE ItemTypes %] > [% USE Price %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index c2365b3..1f01a69 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -1,5 +1,7 @@ > [% USE Koha %] > [% USE KohaDates %] >+[% USE Branches %] >+[% USE Categories %] > [% USE ItemTypes %] > [% INCLUDE 'doc-head-open.inc' %] > [% UNLESS ( multi_hold ) %] >-- >2.8.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 16596
:
51817
|
51848
|
52242