Merge pull request #5749 from turbo124/v5-develop
Fixes for Stripe import
This commit is contained in:
commit
8e3c359eca
2 changed files with 4 additions and 4 deletions
|
|
@ -25,7 +25,7 @@ class StripeController extends BaseController
|
|||
|
||||
StripeUpdatePaymentMethods::dispatch(auth()->user()->getCompany());
|
||||
|
||||
return response()->json(['message' => 'Processing'], 403);
|
||||
return response()->json(['message' => 'Processing'], 200);
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ class StripeController extends BaseController
|
|||
|
||||
ImportStripeCustomers::dispatch(auth()->user()->getCompany());
|
||||
|
||||
return response()->json(['message' => 'Processing'], 403);
|
||||
return response()->json(['message' => 'Processing'], 200);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,11 +56,11 @@ class ImportCustomers
|
|||
|
||||
private function addCustomer(Customer $customer)
|
||||
{
|
||||
|
||||
$account = $this->stripe->company_gateway->company->account;
|
||||
|
||||
if(!$account->isPaidHostedClient() && Client::where('company_id', $this->stripe->company_gateway->company_id)->count() > config('ninja.quotas.free.clients'))
|
||||
return;
|
||||
|
||||
$account = $this->stripe->company_gateway->company->account;
|
||||
|
||||
nlog("search Stripe for {$custom->id}");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue