Bugzilla – Attachment 87451 Details for
Bug 22121
Display 'Price paid' on ILL requests according to CurrencyFormat pref
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22121: Display 'Price paid' on ILL requests according to CurrencyFormat pref
Bug-22121-Display-Price-paid-on-ILL-requests-accor.patch (text/plain), 2.95 KB, created by
Andrew Isherwood
on 2019-04-05 13:47:44 UTC
(
hide
)
Description:
Bug 22121: Display 'Price paid' on ILL requests according to CurrencyFormat pref
Filename:
MIME Type:
Creator:
Andrew Isherwood
Created:
2019-04-05 13:47:44 UTC
Size:
2.95 KB
patch
obsolete
>From f026a4fea71fe2b3f2005ac10bec6047c9a2781f Mon Sep 17 00:00:00 2001 >From: Andrew Isherwood <andrew.isherwood@ptfs-europe.com> >Date: Fri, 5 Apr 2019 14:45:39 +0100 >Subject: [PATCH] Bug 22121: Display 'Price paid' on ILL requests according to > CurrencyFormat pref > >To test: >- Install BLDSS backend > see: https://wiki.koha-community.org/wiki/ILL_backends >- Add a new BLDSS ILL request >- Edit ILL request >- Fill in Price paid field >- Verify Price paid is formatted correctly on 'Manage ILL request' > page > >Signed-off-by: Ethan Amohia <ethan.amohia@gmail.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> > >https://bugs.koha-community.org/show_bug.cgi?id=22121 >--- > koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 7 ++++--- > 1 file changed, 4 insertions(+), 3 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 39f09ee36b..2becaf5304 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 >@@ -6,6 +6,7 @@ > [% SET footerjs = 1 %] > [% USE AuthorisedValues %] > [% USE ColumnsSettings %] >+[% USE Price %] > > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › ILL requests</title> >@@ -224,7 +225,7 @@ > </li> > <li class="cost"> > <label class="cost">Cost:</label> >- [% IF request.cost %][% request.cost | html %][% ELSE %]<span>N/A</span>[% END %] >+ [% IF request.cost %][% request.cost | $Price %][% ELSE %]<span>N/A</span>[% END %] > </li> > <li class="price_paid"> > <label class="price_paid">Price paid:</label> >@@ -379,11 +380,11 @@ > </li> > <li class="cost"> > <span class="label cost">Cost:</span> >- [% IF request.cost %][% request.cost | html %][% ELSE %]<span>N/A</span>[% END %] >+ [% IF request.cost %][% request.cost | $Price %][% ELSE %]<span>N/A</span>[% END %] > </li> > <li class="price_paid"> > <span class="label price_paid">Price paid:</span> >- [% IF request.price_paid %][% request.price_paid | html %][% ELSE %]<span>N/A</span>[% END %] >+ [% IF request.price_paid %][% request.price_paid | $Price %][% ELSE %]<span>N/A</span>[% END %] > </li> > <li class="req_id"> > <span class="label req_id">Request number:</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 22121
:
83841
|
83931
|
84884
|
87386
|
87450
| 87451