Skip to content

Commit

Permalink
Corrected wrong conversion rates
Browse files Browse the repository at this point in the history
  • Loading branch information
sydekumf authored May 6, 2018
1 parent e7e5a60 commit 9b5d703
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Setup/InstallData.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected function setSystemConfiguration()
],
[
'reference_unit' => 'mg',
'conversion_rate' => '0.000001'
'conversion_rate' => '0.001'
]
],
'mg' => [
Expand Down Expand Up @@ -229,17 +229,17 @@ protected function setSystemConfiguration()
'm' => [
[
'reference_unit' => 'cm',
'conversion_rate' => '0.001'
'conversion_rate' => '0.01'
],
[
'reference_unit' => 'mm',
'conversion_rate' => '0.000001'
'conversion_rate' => '0.001'
]
],
'cm' => [
[
'reference_unit' => 'm',
'conversion_rate' => '1000'
'conversion_rate' => '100'
],
[
'reference_unit' => 'mm',
Expand All @@ -249,11 +249,11 @@ protected function setSystemConfiguration()
'mm' => [
[
'reference_unit' => 'm',
'conversion_rate' => '1000000'
'conversion_rate' => '1000'
],
[
'reference_unit' => 'cm',
'conversion_rate' => '1000'
'conversion_rate' => '10'
]
],
];
Expand Down

0 comments on commit 9b5d703

Please sign in to comment.