From 559f3168cef5ce19e938466a1439d56724232e88 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 --- ill/ill-requests.pl | 1 + koha-tmpl/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 53f0f168e5..151d4ec5ed 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 @@ -443,6 +443,10 @@ [% request.cost || 'N/A' | html %] +
  • + + +
  • [% request.id_prefix _ request.illrequest_id | html %] @@ -544,6 +548,10 @@ Cost: [% request.cost || "N/A" | html %] +
    + Price paid: + [% request.price_paid || "N/A" %] +
    Request number: [% request.id_prefix _ request.illrequest_id | html %] -- 2.11.0