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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-9 / +13 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE TablesSettings %]
2
[% USE TablesSettings %]
2
<!-- columns_settings.inc -->
3
<!-- columns_settings.inc -->
3
4
Lines 43-56 function KohaTable(id_selector, dt_parameters, columns_settings, add_filters) { Link Here
43
44
44
    var export_buttons = [
45
    var export_buttons = [
45
        {
46
        {
46
            extend: 'excelHtml5',
47
            text: _("Excel"),
48
            exportOptions: {
49
                columns: exportColumns,
50
                format:  export_format
51
            },
52
        },
53
        {
54
            extend: 'csvHtml5',
47
            extend: 'csvHtml5',
55
            text: _("CSV"),
48
            text: _("CSV"),
56
            exportOptions: {
49
            exportOptions: {
Lines 75-80 function KohaTable(id_selector, dt_parameters, columns_settings, add_filters) { Link Here
75
            },
68
            },
76
        }
69
        }
77
    ];
70
    ];
71
     [% IF Koha.Preference("CurrencyFormat") != 'FR' %]
72
        export_buttons.unshift (
73
            {
74
                extend: 'excelHtml5',
75
                text: _("Excel"),
76
                exportOptions: {
77
                    columns: exportColumns,
78
                    format:  export_format
79
                },
80
            }
81
        )
82
    [% END %]
78
83
79
    dt_parameters[ "buttons" ] = [
84
    dt_parameters[ "buttons" ] = [
80
        {
85
        {
81
- 

Return to bug 22038