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 type
224
    // Render function for type
Lines 292-298 $(document).ready(function() { Link Here
292
            skipSanitize: true
292
            skipSanitize: true
293
        },
293
        },
294
        illrequest_id: {
294
        illrequest_id: {
295
            func: createRequestId
295
            func: createRequestId,
296
            skipSanitize: true
296
        },
297
        },
297
        status: {
298
        status: {
298
            func: createStatus
299
            func: createStatus
299
- 

Return to bug 31705