-
Notifications
You must be signed in to change notification settings - Fork 682
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
PDF invoice not showing tax percentage (Tax Rates) #854
Comments
We'll need some more info on how the tax rate and subscription set up as well as some code to reproduce the problem. |
Thanks for the info. I probably won't have time to look into this until next week at the earliest. |
Managed to reproduce this. Will look into it. |
Sent in a PR for this: #876 |
Fixed on master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description:
Created a subscription with the new taxRates() and the pdf invoice generated by Cashier is not showing any tax percentage. The subscription is correctly created in Stripe (with the proper Tax Rates).
Steps To Reproduce:
Expected:
Result:
Remarks:
In cashier/src/InvoiceLineItem.php line 135, $this->item->tax_rates is empty when generating the invoice.
To generate the expected invoice I changed this property with $this->item->tax_amounts.
The text was updated successfully, but these errors were encountered: