Correct rounding in reports

This commit is contained in:
Hillel Coren 2022-04-19 21:59:31 +03:00
parent 8a0005d98f
commit d4aed38d6d
1 changed files with 2 additions and 1 deletions

View File

@ -1609,7 +1609,8 @@ class ReportNumberValue extends ReportElement {
} }
return formatNumber(value, context, return formatNumber(value, context,
currencyId: currencyId, formatNumberType: formatNumberType); currencyId: currencyId,
formatNumberType: formatNumberType ?? FormatNumberType.money);
} }
} }