Skip to content

Commit

Permalink
uat typo roll backed
Browse files Browse the repository at this point in the history
  • Loading branch information
hafijul233 committed Jan 29, 2025
1 parent b5b7fd5 commit e0c6c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vendors/MeghnaBankApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function executeOrder(BaseModel $order): AssignVendorVerdict
$params['RECEIVER_ADDRESS'] = ($order_data['beneficiary_data']['receiver_information']['city_name'] ?? null).','.($order_data['beneficiary_data']['receiver_information']['country_name'] ?? null);
$params['RECEIVER_AND_SENDER_RELATION'] = $order_data['beneficiary_data']['receiver_information']['relation_name'] ?? 'Relatives';
$params['RECEIVER_CONTACT'] = str_replace('+88', '', ($order_data['beneficiary_data']['receiver_information']['beneficiary_mobile'] ?? null));
$params['RECIEVER_BANK_BR_ROUTING_NUMBER'] = $order_data['beneficiary_data']['branch_information']['branch_data']['location_no'] ?? '';
$params['RECIEVER_BANK_BR_ROUTING_NUMBER'] = intval($order_data['beneficiary_data']['branch_information']['branch_data']['location_no'] ?? '');
$params['RECEIVER_BANK'] = ($order_data['beneficiary_data']['bank_information']['bank_name'] ?? null);
$params['RECEIVER_BANK_BRANCH'] = ($order_data['beneficiary_data']['branch_information']['branch_name'] ?? null);
$params['RECEIVER_ACCOUNT_NUMBER'] = ($order_data['beneficiary_data']['receiver_information']['beneficiary_data']['bank_account_number']);
Expand Down

0 comments on commit e0c6c3e

Please sign in to comment.