PRICE VIEW

Andrej
Andrej
Offline
0
How to change symbol . in , for PRICE field.

Like this: 30,00 EUR and not 30.00 EUR
or
1.200,00 EUR and not this 1,200.00 EUR

I WANT THIS TYPE OF PRICE VIEW:
1.200,00 EUR


Thank you
Responses (1)
  • Accepted Answer

    Andrej
    Andrej
    Offline
    Monday, July 16 2012, 10:14 AM - #Permalink
    0
    THIS WORKS FOR ME. THANK YOU :cheer:

    --------------------------------------

    hello!

    you need to change a PHP line for this. open file /components/com_invoices/helpers/helpers.php and on line 18 you must replace this:

    return $before . $return_before . number_format(abs($number), 2) . $return_after . $after ;

    for this:

    return $before . $return_before . number_format(abs($number), 2, ",", ".") . $return_after . $after ;

    --
    Germinal Camps
    Chief Software Engineer
    Joomla Finances
    http://www.joomlafinances.com
    The reply is currently minimized Show
Your Reply