@@ -243,7 +243,8 @@ class ProductClass extends BaseClass
} else {
$profit = bcsub($price, $cost, 2);
$mll = bcdiv($profit, $cost, 3);
- $mll = round($mll, 2);
+ $mll = bcmul($mll, 100);
+ $mll = round($mll, 1);
}
$list[$k]['mll'] = $mll;