mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:47:32 -05:00 
			
		
		
		
	Merge pull request #5749 from turbo124/v5-develop
Fixes for Stripe import
This commit is contained in:
		
						commit
						8e3c359eca
					
				@ -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);
 | 
			
		||||
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -57,11 +57,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}");
 | 
			
		||||
 | 
			
		||||
        $existing_customer = $this->stripe
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user