Skip to content
Snippets Groups Projects
Commit 1133ee87 authored by Prasad's avatar Prasad
Browse files

Merge branch '158227644' into 'master'

Fixes: The currency values are formatted as per user preference

See merge request !1032
parents 3ea2d9b2 859665ba
No related branches found
No related tags found
1 merge request!1032Fixes: The currency values are formatted as per user preference
......@@ -439,7 +439,8 @@ class Settings_LayoutEditor_Field_Model extends Vtiger_Field_Model {
if ($defaultValue) {
if ($this->getFieldDataType() == 'currency') {
$defaultValue = $this->getCurrencyDisplayValue($defaultValue, true);
//The argument for $skipformatting parameter is passed false to get value with user preference.
$defaultValue = $this->getCurrencyDisplayValue($defaultValue, false);
} else {
$defaultValue = $this->getDisplayValue($defaultValue);
}
......
......@@ -183,7 +183,8 @@ class Settings_LayoutEditor_Module_Model extends Vtiger_Module_Model {
} else if (strtolower($fieldType) == 'time') {
$defaultValue = Vtiger_Time_UIType::getTimeValueWithSeconds($defaultValue);
} else if (strtolower($fieldType) == 'currency') {
$defaultValue = CurrencyField::convertToDBFormat($defaultValue, null, true);
//The argument for $skipformatting parameter is passed false to get the value in DB format($).
$defaultValue = CurrencyField::convertToDBFormat($defaultValue, null, false);
} else if (strtolower($fieldType) == 'decimal') {
$defaultValue = CurrencyField::convertToDBFormat($defaultValue, null, true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment