Support updating client with buy now link

This commit is contained in:
Hillel Coren 2017-03-13 19:57:16 +02:00
parent 88bed420b1
commit dac110e7e0

View File

@ -311,7 +311,6 @@ class OnlinePaymentController extends BaseController
$query->where('contact_key', $contactKey); $query->where('contact_key', $contactKey);
})->first(); })->first();
} }
if (! $client) {
$rules = [ $rules = [
'first_name' => 'string|max:100', 'first_name' => 'string|max:100',
'last_name' => 'string|max:100', 'last_name' => 'string|max:100',
@ -327,8 +326,7 @@ class OnlinePaymentController extends BaseController
'currency_id' => $account->currency_id, 'currency_id' => $account->currency_id,
'contact' => Input::all(), 'contact' => Input::all(),
]; ];
$client = $clientRepo->save($data); $client = $clientRepo->save($data, $client);
}
$data = [ $data = [
'client_id' => $client->id, 'client_id' => $client->id,