From caef7fa4ca62616fdab4ffeb002ae5af55a1b343 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 --- 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 47cfc97050..2260e71453 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 4470f09c23..66edb8300f 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 @@ -442,6 +442,10 @@ [% request.cost || 'N/A' %] +
  • + + +
  • [% request.id_prefix _ request.illrequest_id %] @@ -541,6 +545,10 @@ Cost: [% request.cost || "N/A" %] +
    + Price paid: + [% request.price_paid || "N/A" %] +
    Request number: [% request.id_prefix _ request.illrequest_id %] -- 2.11.0