Bugzilla – Attachment 82331 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]
Display illrequests.medium as Request type
Display-illrequestsmedium-as-Request-type.patch (text/plain), 2.75 KB, created by
Magnus Enger
on 2018-11-14 13:40:12 UTC
(
hide
)
Description:
Display illrequests.medium as Request type
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2018-11-14 13:40:12 UTC
Size:
2.75 KB
patch
obsolete
>From 000514d3885fe62b40073fd4c873979b17733fe9 Mon Sep 17 00:00:00 2001 >From: Magnus Enger <magnus@libriotech.no> >Date: Wed, 14 Nov 2018 14:28:08 +0100 >Subject: [PATCH] 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. > >https://bugs.koha-community.org/show_bug.cgi?id=21833 >--- > 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 0ec9ec105e..b2a165cc50 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> >@@ -562,8 +561,7 @@ > </div> > <div 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 %] > </div> > <div class="cost"> > <span class="label cost">Cost:</span> >-- >2.11.0
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