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

(-)a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js (-3 / +4 lines)
Lines 342-355 $(document).ready(function() { Link Here
342
                "data": "cost",
342
                "data": "cost",
343
                "orderable": true,
343
                "orderable": true,
344
                "render": function(data, type, row, meta) {
344
                "render": function(data, type, row, meta) {
345
                    return escape_str(data);
345
                    let cost = Number(row.cost) || 0;
346
                    return cost.escapeHtml().format_price();
346
                }
347
                }
347
            },
348
            },
348
            {
349
            {
349
                "data": "paid_price",
350
                "data": "paid_price",
350
                "orderable": true,
351
                "orderable": true,
351
                "render": function(data, type, row, meta) {
352
                "render": function(data, type, row, meta) {
352
                    return escape_str(data);
353
                    let paid_price = Number(row.paid_price) || 0;
354
                    return paid_price.escapeHtml().format_price();
353
                }
355
                }
354
            },
356
            },
355
            {
357
            {
356
- 

Return to bug 32595