From aecd099605024629094c9de5ec98a7f3a5978e40 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 Signed-off-by: Lisette Scheer --- 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 98064ff6674..a7548d5934e 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 @@ -676,6 +676,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