fix timer for transaction

This commit is contained in:
omair saleh
2022-03-04 11:58:48 +08:00
parent a5cf0b4fe1
commit 8334767766
@@ -103,7 +103,7 @@ class TopUpWalletLogic extends AbstractControllerLogic
}
$billPlzBill = $this->createsBillplzBill->execute($user->name, $user->email, 'This payment is credit topup for company ref. ' . $company->reference, $amount, $billNumber, $request->input('bank_code'), true);
dd($billPlzBill);
$transaction_object = new TransactionObject($billNumber, TransactionType::TOP_UP, 1, $company->id, 1, PaymentMethodType::PAYMENT_GATEWAY, $amount, $amount, 1, 1, 1, 0, 0, null, ApprovalStatus::PENDING_SUBMISSION, [], $billPlzBill->id);
$transaction = $this->createsTransaction->execute($wallet, $transaction_object);