Topic: money_format is also deprecated in aove PHP 7.4.
From our pdf_reports.inc
$ret = $this->TextCol($c, $n, money_format($amount_format, $txt), $corr, $r, $border, $fill, $link, $stretch);
Here is the only place we have used the money_format. It has a definition for windows from current_users.inc
if (!function_exists('money_format'))
{
function money_format($format, $number)
{
return price_format($number);
}
}
I think we better use the price_format or number_format2 here to fix this issue,
@joe, looking word from you.
HRM CRM POS batch Themes