Fixes for Rotessa

This commit is contained in:
David Bomba 2024-08-09 15:39:16 +10:00
parent 286b2087cd
commit ec144b4181
3 changed files with 31 additions and 6 deletions

View File

@ -100,7 +100,16 @@ class PaymentMethod implements MethodInterface
$customer = array_merge(['address' => $request->only('address_1','address_2','city','postal_code','province_code','country'), 'custom_identifier' => $request->input('custom_identifier') ], $request->all()); $customer = array_merge(['address' => $request->only('address_1','address_2','city','postal_code','province_code','country'), 'custom_identifier' => $request->input('custom_identifier') ], $request->all());
try{
$this->rotessa->findOrCreateCustomer($customer); $this->rotessa->findOrCreateCustomer($customer);
}
catch(\Exception $e){
$message = json_decode($e->getMessage(), true);
return redirect()->route('client.payment_methods.index')->withErrors(array_values($message['errors']));
}
return redirect()->route('client.payment_methods.index')->withMessage(ctrans('texts.payment_method_added')); return redirect()->route('client.payment_methods.index')->withMessage(ctrans('texts.payment_method_added'));

View File

@ -202,7 +202,6 @@ class RotessaPaymentDriver extends BaseDriver
public function findOrCreateCustomer(array $data) public function findOrCreateCustomer(array $data)
{ {
nlog($data);
$result = null; $result = null;
try { try {
@ -219,7 +218,6 @@ class RotessaPaymentDriver extends BaseDriver
if(!isset($data['id'])) { if(!isset($data['id'])) {
nlog("no id, lets goo");
$result = $this->gatewayRequest('post', 'customers', $data); $result = $this->gatewayRequest('post', 'customers', $data);
if($result->failed()) if($result->failed())
@ -252,9 +250,16 @@ class RotessaPaymentDriver extends BaseDriver
'code' => 500 'code' => 500
]; ];
SystemLogger::dispatch(['server_response' => is_null($result) ? '' : $result->getMessage(), 'data' => $data], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, 880 , $this->client, $this->company_gateway->company); SystemLogger::dispatch(['server_response' => $data, 'data' => []], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, 880 , $this->client, $this->company_gateway->company);
throw $th; try{
$errors = explode("422:", $th->getMessage())[1];
}
catch(\Exception){
$errors = 'Unknown error occured';
}
throw new \Exception($errors, $th->getCode());
} }
} }

View File

@ -2,6 +2,17 @@
@section('meta_title', ctrans('texts.payment_methods')) @section('meta_title', ctrans('texts.payment_methods'))
@section('body') @section('body')
@section('header')
@if($errors->any())
<div class="alert alert-failure mb-4">
@foreach($errors->all() as $error)
<p>{{ $error }}</p>
@endforeach
</div>
@endif
@endsection
<div class="flex flex-col"> <div class="flex flex-col">
@livewire('payment-methods-table', ['client_id' => $client->id, 'db' => $company->db]) @livewire('payment-methods-table', ['client_id' => $client->id, 'db' => $company->db])
</div> </div>