Fixed issue in cart rule actions

This commit is contained in:
Prashant Singh 2019-06-18 19:14:49 +05:30
parent 9e80687960
commit e0f93aae56
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class PercentOfProduct extends Action
}
$report['discount'] = $amountDiscounted;
$report['formatted_discount'] = core()->formatPrice($amountDiscounted);
$report['formatted_discount'] = core()->currency($amountDiscounted);
return $report;
}