Created attachment 182798 [details] [review] Bug 40005: Add accessurl to manage ILL request page Test plan: 1) Enable ILLModule 2) Create a new ILL request, visit: <staff_url>/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.
Created attachment 182893 [details] [review] Bug 40005: Add accessurl to manage ILL request page Test plan: 1) Enable ILLModule 2) Create a new ILL request, visit: <staff_url>/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 <david@davidnind.com>
Testing notes (using KTD): 1. Before applying the patch: - create an ILL request - use the SQL in step 5 to add a value to the accessurl field - note this value is shown in the table listing all ILL requests - note that it is not shown on the request details page for the ILL request 2. After the patch, the value is shown on the details page for the ILL request. I'm assuming that this database field exists, and if a value is added depends on the backend you use.