View | Details | Raw Unified | Return to bug 31705
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js (-3 / +3 lines)
Lines 218-224 $(document).ready(function() { Link Here
218
218
219
    // Render function for request ID
219
    // Render function for request ID
220
    var createRequestId = function(data, type, row) {
220
    var createRequestId = function(data, type, row) {
221
        return row.id_prefix + row.illrequest_id;
221
        return '<a href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=' + row.illrequest_id + '">' + row.id_prefix + row.illrequest_id + '</a>';
222
    };
222
    };
223
223
224
    // Render function for batch
224
    // Render function for batch
Lines 302-308 $(document).ready(function() { Link Here
302
            skipSanitize: true
302
            skipSanitize: true
303
        },
303
        },
304
        illrequest_id: {
304
        illrequest_id: {
305
            func: createRequestId
305
            func: createRequestId,
306
            skipSanitize: true
306
        },
307
        },
307
        status: {
308
        status: {
308
            func: createStatus
309
            func: createStatus
309
- 

Return to bug 31705