From 474bf48c4a97876eb8160e94ef04393adfe9410c Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Mon, 21 May 2018 10:40:59 +0100 Subject: [PATCH] Bug 20772: Display and edit of price_paid Signed-off-by: Barry Cannon Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- ill/ill-requests.pl | 1 + .../intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/ill/ill-requests.pl b/ill/ill-requests.pl index 48190b6a26..877db4dc16 100755 --- a/ill/ill-requests.pl +++ b/ill/ill-requests.pl @@ -128,6 +128,7 @@ if ( $backends_available ) { $request->borrowernumber($params->{borrowernumber}); $request->biblio_id($params->{biblio_id}); $request->branchcode($params->{branchcode}); + $request->price_paid($params->{price_paid}); $request->notesopac($params->{notesopac}); $request->notesstaff($params->{notesstaff}); $request->store; 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 41a79620ca..6db871738a 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 @@ -431,6 +431,10 @@ [% request.cost || 'N/A' | html %] +
  • + + +
  • [% request.id_prefix _ request.illrequest_id | html %] @@ -532,6 +536,10 @@ Cost: [% request.cost || "N/A" | html %] +
    + Price paid: + [% request.price_paid || "N/A" %] +
    Request number: [% request.id_prefix _ request.illrequest_id | html %] -- 2.19.1