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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-13 / +12 lines)
Lines 245-263 function LoadIssuesTable() { Link Here
245
                        return title;
245
                        return title;
246
                    },
246
                    },
247
                    type: "anti-the",
247
                    type: "anti-the",
248
                    orderData: [1, 3],
248
                    orderData: [1, 4],
249
                },
249
                },
250
                {
250
                {
251
                    data: function (oObj) {
251
                    data: function (oObj) {
252
                        return oObj.recordtype_description.escapeHtml();
252
                        return oObj.recordtype_description.escapeHtml();
253
                    },
253
                    },
254
                    orderData: [1, 4],
254
                    orderData: [1, 5],
255
                },
255
                },
256
                {
256
                {
257
                    data: function (oObj) {
257
                    data: function (oObj) {
258
                        return oObj.itemtype_description.escapeHtml();
258
                        return oObj.itemtype_description.escapeHtml();
259
                    },
259
                    },
260
                    orderData: [1, 5],
260
                    orderData: [1, 6],
261
                },
261
                },
262
                {
262
                {
263
                    data: function (oObj) {
263
                    data: function (oObj) {
Lines 265-277 function LoadIssuesTable() { Link Here
265
                            ? oObj.collection.escapeHtml()
265
                            ? oObj.collection.escapeHtml()
266
                            : "";
266
                            : "";
267
                    },
267
                    },
268
                    orderData: [1, 6],
268
                    orderData: [1, 7],
269
                },
269
                },
270
                {
270
                {
271
                    data: function (oObj) {
271
                    data: function (oObj) {
272
                        return oObj.location ? oObj.location.escapeHtml() : "";
272
                        return oObj.location ? oObj.location.escapeHtml() : "";
273
                    },
273
                    },
274
                    orderData: [1, 7],
274
                    orderData: [1, 8],
275
                },
275
                },
276
                {
276
                {
277
                    data: function (oObj) {
277
                    data: function (oObj) {
Lines 279-285 function LoadIssuesTable() { Link Here
279
                            ? oObj.homebranch.escapeHtml()
279
                            ? oObj.homebranch.escapeHtml()
280
                            : "";
280
                            : "";
281
                    },
281
                    },
282
                    orderData: [1, 8],
282
                    orderData: [1, 9],
283
                },
283
                },
284
                {
284
                {
285
                    data: "issuedate",
285
                    data: "issuedate",
Lines 299-305 function LoadIssuesTable() { Link Here
299
                            ? oObj.branchname.escapeHtml()
299
                            ? oObj.branchname.escapeHtml()
300
                            : "";
300
                            : "";
301
                    },
301
                    },
302
                    orderData: [1, 11],
302
                    orderData: [1, 12],
303
                },
303
                },
304
                {
304
                {
305
                    data: function (oObj) {
305
                    data: function (oObj) {
Lines 307-313 function LoadIssuesTable() { Link Here
307
                            ? oObj.itemcallnumber.escapeHtml()
307
                            ? oObj.itemcallnumber.escapeHtml()
308
                            : "";
308
                            : "";
309
                    },
309
                    },
310
                    orderData: [1, 12],
310
                    orderData: [1, 13],
311
                },
311
                },
312
                {
312
                {
313
                    data: function (oObj) {
313
                    data: function (oObj) {
Lines 315-321 function LoadIssuesTable() { Link Here
315
                            ? oObj.copynumber.escapeHtml()
315
                            ? oObj.copynumber.escapeHtml()
316
                            : "";
316
                            : "";
317
                    },
317
                    },
318
                    orderData: [1, 13],
318
                    orderData: [1, 14],
319
                },
319
                },
320
                {
320
                {
321
                    data: function (oObj) {
321
                    data: function (oObj) {
Lines 326-332 function LoadIssuesTable() { Link Here
326
                            "<span>"
326
                            "<span>"
327
                        );
327
                        );
328
                    },
328
                    },
329
                    orderData: [1, 14],
329
                    orderData: [1, 15],
330
                    className: "nowrap",
330
                    className: "nowrap",
331
                },
331
                },
332
                {
332
                {
Lines 338-344 function LoadIssuesTable() { Link Here
338
                            "<span>"
338
                            "<span>"
339
                        );
339
                        );
340
                    },
340
                    },
341
                    orderData: [1, 15],
341
                    orderData: [1, 16],
342
                    className: "nowrap",
342
                    className: "nowrap",
343
                },
343
                },
344
                {
344
                {
Lines 350-356 function LoadIssuesTable() { Link Here
350
                            "<span>"
350
                            "<span>"
351
                        );
351
                        );
352
                    },
352
                    },
353
                    orderData: [1, 16],
353
                    orderData: [1, 17],
354
                    className: "nowrap",
354
                    className: "nowrap",
355
                },
355
                },
356
                {
356
                {
357
- 

Return to bug 24533