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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-3 / +8 lines)
Lines 521-534 Link Here
521
                        "searchable": false
521
                        "searchable": false
522
                    },
522
                    },
523
                    {
523
                    {
524
                        "data": "replacement_price"
524
                        "data": "replacement_price",
525
                        "render": function(data, type, row, meta) {
526
                            return (row.replacement_price).format_price();
527
                        },
525
                    },
528
                    },
526
                    {
529
                    {
527
                        "data": "quantity",
530
                        "data": "quantity",
528
                        "orderable": true
531
                        "orderable": true
529
                    },
532
                    },
530
                    {
533
                    {
531
                        "data": "ecost"
534
                        "data": "ecost",
535
                        "render": function(data, type, row, meta) {
536
                            return (row.ecost).format_price();
537
                        },
532
                    },
538
                    },
533
                    {
539
                    {
534
                        "data": "",
540
                        "data": "",
535
- 

Return to bug 20212