Bugzilla – Attachment 82573 Details for
Bug 21833
illrequests.medium is not displayed on ILL request detail page and ILL requests table
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21833: Display illrequests.medium as Request type
Bug-21833-Display-illrequestsmedium-as-Request-typ.patch (text/plain), 2.78 KB, created by
Owen Leonard
on 2018-11-21 18:30:20 UTC
(
hide
)
Description:
Bug 21833: Display illrequests.medium as Request type
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2018-11-21 18:30:20 UTC
Size:
2.78 KB
patch
obsolete
>From 7d3801fdee097bd8998554d9263273fa910fd7b2 Mon Sep 17 00:00:00 2001 >From: Magnus Enger <magnus@libriotech.no> >Date: Wed, 14 Nov 2018 14:28:08 +0100 >Subject: [PATCH] Bug 21833: Display illrequests.medium as Request type > >To test: >- Make sure you have an ILL request with a value in illrequests.medium >- View the request in Detail view and Edit view, "N/A" is displayed for > the Request type >- Apply the patch >- View the request in Detail and Edit view again, the value from > illrequests.medium is now displayed as the Request type > >This patch also brings the coding around illrequests.medium more in >line with the coding of similar attributes. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >index f2a833f..7fbb109 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >@@ -427,7 +427,6 @@ > <fieldset class="rows"> > <legend>Request details</legend> > <ol> >- [% type = request.get_type %] > <li class="borrowernumber"> > <label for="borrowernumber">Patron ID:</label> > [% request.borrowernumber | html %] >@@ -453,7 +452,7 @@ > </li> > <li class="medium"> > <label class="medium">Request type:</label> >- [% IF type %][% type | html %][% ELSE %]<span>N/A</span>[% END %] >+ [% IF request.medium %][% request.medium | html %][% ELSE %]<span>N/A</span>[% END %] > </li> > <li class="cost"> > <label class="cost">Cost:</label> >@@ -563,8 +562,7 @@ > </li> > <li class="medium"> > <span class="label medium">Request type:</span> >- [% type = request.get_type %] >- [% IF type %][% type | html %][% ELSE %]<span>N/A</span>[% END %] >+ [% IF request.medium %][% request.medium | html %][% ELSE %]<span>N/A</span>[% END %] > </li> > <li class="cost"> > <span class="label cost">Cost:</span> >-- >2.1.4
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 21833
:
82331
| 82573