From 9ebc43b17d5686c64d8405e1732cfc7bf6778ba2 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. --- 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 26ba077ed94..552d8cde937 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