Quick fix for group payment issue got stuck reported by enqi

This commit is contained in:
Dillon Ngo
2026-01-06 10:20:04 +08:00
parent 7a5cf5f2ce
commit 0484eabb0e
2 changed files with 2 additions and 2 deletions
@@ -114,7 +114,7 @@ class CreatePaymentTransactionProcessor
/** @var Wallet $wallet */
$wallet = $company_module->wallets()->first();
if((float) number_format(($wallet->amount - $amount),2) < -0.02){
if((float) number_format(($wallet->amount - $amount),2) < -0.01){
throw new MalformedRequestException('Insufficient wallet balance. Please Top up your wallet.');
}
@@ -43,7 +43,7 @@ class OneTimeFixWalletGroupTransactionV2Command extends Command
*/
public function handle()
{
// return;
return;
OneTimeFixWalletGroupTransactionV2CommandJob::dispatch();
}