Skip to content

Commit 8ac0cdd

Browse files
committed
AC-9221::SubTotal Rounding Issue For Decimal Quantity Enabled Product
1 parent 89b5aac commit 8ac0cdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Directory/Model/Currency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ public function formatPrecision(
341341
$includeContainer = true,
342342
$addBrackets = false
343343
) {
344-
if(is_numeric($price)) {
344+
if (is_numeric($price)) {
345345
$price = round($price, $precision);
346346
}
347347
if (!isset($options['precision'])) {

0 commit comments

Comments
 (0)