Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] Send invoice #942

Merged
merged 2 commits into from
May 21, 2020
Merged

[11.x] Send invoice #942

merged 2 commits into from
May 21, 2020

Commits on May 12, 2020

  1. Use sendInvoice() when collection method is 'send_invoice'

    In some edge cases (like mine) we have clients that can't use a credit card, but we still want to have all the data in Stripe. So we create a subscription with collection_method = 'send_invoice' and the manually sent the invoices to be paid, once we received payment we just change the status manually in Stripe.
    
    ´´´
    $model->invoice(['collection_method' => 'send_invoice']);
    $subscription->invoice(['collection_method' => 'send_invoice']);
    ´´´
    
    When you use this collection method you can't apply $stripeInvoice->pay() function, you need to use the $stripeInvoice->sendInvoice();
    
    When using the $stripeInvoice->pay() on when a colletion_method is 'send_invoice' it throws PaymentFailure, it doesn't require a payment method.
    
    The only two options in 'collection_methods' is charge_automatically (default) or 'send_invoice' there fore using a simple if else statement.
    
    https://stripe.com/docs/api/invoices/create#create_invoice-collection_method
    eckelarsson authored May 12, 2020
    Configuration menu
    Copy the full SHA
    99973e3 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2020

  1. Use constant

    driesvints committed May 21, 2020
    Configuration menu
    Copy the full SHA
    fcbe3fa View commit details
    Browse the repository at this point in the history