#126 : swapped default seperator for grouping to avoid same seperator for decimal and grouiping
parent
b2f90568
No related branches found
No related tags found
Loading
-
Yes, and that change should be done also in modules/Users/Users.php line 751 for user creation
Another improve (optional) is add a currency_grouping_separator "none" so we can have this: 123456,78 instead of this: 123.456,78
Maybe opening a new ticket for this formats not show in inventory creation like quotes invoices etc
if(empty($this->column_fields['currency_decimal_separator'])) { $this->column_fields['currency_decimal_separator'] = ','; } if(empty($this->column_fields['currency_grouping_separator'])) { $this->column_fields['currency_grouping_separator'] = '.'; }
and 1053
$this->column_fields['currency_decimal_separator'] = $this->currency_decimal_separator = ','; $this->column_fields['currency_grouping_separator'] = $this->currency_grouping_separator = '.';
Please register or sign in to comment