@@ -, +, @@ --- ill/ill-requests.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 8 ++++++++ 2 files changed, 9 insertions(+) --- a/ill/ill-requests.pl +++ a/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; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ a/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 %] --