From 1ca864bafdae9f220c96e0768cc6a881610aa31f Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Tue, 27 May 2025 14:10:26 +0000 Subject: [PATCH] Bug 40005: Add accessurl to manage ILL request page Test plan: 1) Enable ILLModule 2) Create a new ILL request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=Standard 3) Add 'type', cardnumber '42' and any library. Click 'Create'. 4) You are now on the ILL manage request page. 5) Some backends may use the accessurl to store the URL of a document, run the following SQL: UPDATE illrequests SET accessurl = 'https://koha-community.org/'; 6) Refresh the page from 4) or visit the ILL manage request page for that request. 7) Verify the accessurl is now shown. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 6 ++++++ 1 file changed, 6 insertions(+) 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 26ba077ed9..552d8cde93 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 @@ -646,6 +646,12 @@ [% type | html %] [% END %] + [% IF request.accessurl %] +
  • + Access URL: + View document +
  • + [% END %] [% historycheck_requests = request.get_history_check_requests %] [% IF historycheck_requests.count %]
  • -- 2.39.5