fix timer for transaction

This commit is contained in:
omair saleh
2022-03-04 12:01:27 +08:00
parent 8334767766
commit 3666b27b76
2 changed files with 2 additions and 2 deletions
@@ -35,7 +35,7 @@ class CreatesBillplzBill
'reference_2_label' => 'Bill Number',
'reference_2' => $billNumber
]);
dd($response);
if($response->successful()){
$data = $response->json();
@@ -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);