Commit 9b2d2284 by dhn

Merge branch 'developer' of http://47.99.244.21:9999/root/joshine into Branch_developer

parents f723617a a71aba5d
...@@ -171,8 +171,10 @@ class Format implements \Magento\Framework\Locale\FormatInterface ...@@ -171,8 +171,10 @@ class Format implements \Magento\Framework\Locale\FormatInterface
'pattern' => $currency->getOutputFormat(), 'pattern' => $currency->getOutputFormat(),
'precision' => $totalPrecision, 'precision' => $totalPrecision,
'requiredPrecision' => $requiredPrecision, 'requiredPrecision' => $requiredPrecision,
'decimalSymbol' => $decimalSymbol, /* 'decimalSymbol' => $decimalSymbol, 框架旧代码,这里有bug
'groupSymbol' => $groupSymbol, 'groupSymbol' => $groupSymbol,*/
'decimalSymbol' => '.',
'groupSymbol' => ',',
'groupLength' => $group, 'groupLength' => $group,
'integerRequired' => $totalPrecision == 0, 'integerRequired' => $totalPrecision == 0,
]; ];
......
...@@ -3629,10 +3629,10 @@ For terms of use, see http://www.unicode.org/copyright.html ...@@ -3629,10 +3629,10 @@ For terms of use, see http://www.unicode.org/copyright.html
<currencyFormats numberSystem="latn"> <currencyFormats numberSystem="latn">
<currencyFormatLength> <currencyFormatLength>
<currencyFormat type="standard"> <currencyFormat type="standard">
<pattern>#,##0.00 ¤</pattern> <pattern>¤#,##0.00</pattern>
</currencyFormat> </currencyFormat>
<currencyFormat type="accounting"> <currencyFormat type="accounting">
<pattern>#,##0.00 ¤</pattern> <pattern>¤#,##0.00</pattern>
</currencyFormat> </currencyFormat>
</currencyFormatLength> </currencyFormatLength>
<unitPattern count="one">{0} {1}</unitPattern> <unitPattern count="one">{0} {1}</unitPattern>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment