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

(-)a/Koha/Number/Price.pm (+13 lines)
Lines 105-110 sub _format_params { Link Here
105
        );
105
        );
106
    }
106
    }
107
107
108
    if ( $currency_format eq 'CH' ) {
109
        $int_curr_symbol = $currency->symbol if $with_symbol;
110
        %format_params = (
111
            decimal_fill      => '2',
112
            decimal_point     => '.',
113
            int_curr_symbol   => $int_curr_symbol,
114
            mon_thousands_sep => '\'',
115
            thousands_sep     => '\'',
116
            mon_decimal_point => '.'
117
        );
118
    }
119
120
108
    $format_params{p_cs_precedes}  = $p_cs_precedes  if defined $p_cs_precedes;
121
    $format_params{p_cs_precedes}  = $p_cs_precedes  if defined $p_cs_precedes;
109
    $format_params{p_sep_by_space} = ( $int_curr_symbol and defined $p_sep_by_space ) ? $p_sep_by_space : 0;
122
    $format_params{p_sep_by_space} = ( $int_curr_symbol and defined $p_sep_by_space ) ? $p_sep_by_space : 0;
110
123
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref (-1 / +1 lines)
Lines 32-37 Acquisitions: Link Here
32
              choices:
32
              choices:
33
                  US: 360,000.00 (US)
33
                  US: 360,000.00 (US)
34
                  FR: 360 000,00 (FR)
34
                  FR: 360 000,00 (FR)
35
                  CH: 360'000.00 (CH)
35
        -
36
        -
36
            - Tax rates are
37
            - Tax rates are
37
            - pref: gist
38
            - pref: gist
38
- 

Return to bug 16768