提交 22f335ef 编写于 作者: D devil_gong

细节优化

上级 363a7d60
......@@ -337,7 +337,11 @@ function FunEach(&$data)
*/
function PriceNumberFormat($value, $decimals = 2, $dec_point = '.')
{
return number_format($value, $decimals, $dec_point, '');
if(!empty($value))
{
return number_format($value, $decimals, $dec_point, '');
}
return 0.00;
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册