Responses (4)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0it's a bit more complicated than than.. there may be a few lines in more than one file.. I thought you were a coder..!
I would start with: in file /helpers/helpers.php on line 23 there is this function "format", I would modify it like so:
function format($number, $before = "", $after = ""){
$params = &JComponentHelper::getParams( 'com_invoices' );
$decpoint = $params->get('decpoint', '.');
$thousands = $params->get('thousands', ',');
if(!$number) return "-" ;
return $before . number_format($number, 2, $decpoint, $thousands) . $after ;
}
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »