修复小数点

This commit is contained in:
mkm 2023-09-28 16:59:44 +08:00
parent e9bde1f6da
commit 19267aa12f

View File

@ -747,7 +747,7 @@ class MerchantRepository extends BaseRepository
throw new \Exception('merchant 保存出错', 500); throw new \Exception('merchant 保存出错', 500);
} }
return [bcsub($income,$margin), $finance, true]; return [bcsub($income,$margin,2), $finance, true];
} }
} }