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

(-)a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js (-4 / +3 lines)
Lines 218-228 $(document).ready(function() { Link Here
218
                "data": "batch.name", // batch
218
                "data": "batch.name", // batch
219
                "orderable": false,
219
                "orderable": false,
220
                "render": function(data, type, row, meta) {
220
                "render": function(data, type, row, meta) {
221
                    return row.batch ?
221
                    return row.ill_batch ?
222
                        '<a href="/cgi-bin/koha/ill/ill-requests.pl?batch_id=' +
222
                        '<a href="/cgi-bin/koha/ill/ill-requests.pl?batch_id=' +
223
                        row.ill_batch_id +
223
                        row.ill_batch.ill_batch_id +
224
                        '">' +
224
                        '">' +
225
                        row.batch.name +
225
                        row.ill_batch.name +
226
                        '</a>'
226
                        '</a>'
227
                        : "";
227
                        : "";
228
                }
228
                }
229
- 

Return to bug 35098