-
Notifications
You must be signed in to change notification settings - Fork 39
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
New version for Canadian Taxes #73
base: master
Are you sure you want to change the base?
Conversation
Based on https://github.com/monosolutions/tax/tree/CanadianTaxes. * Fixed errors in zone files: - administrative-area whould only have the proince letters - errors in generic names (ex. BC is not on HST, but has its own provincial tax) * Fixed errors in tax types: - outdated values were updated (using this official page as a reference: https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/gst-hst-businesses/charge-collect-which-rate/calculator.html) - generic labels were fixed to display real spellings (ex. PST in Manitoba is called RST)
* If Store and Client are based in different provinces, provincial tax can only be collected by Store if it's registered in Client's province. * GST and HST can (and have to) be collected everytime by Store from Client in Canada.
Closed #31 in favor of this one. |
Looks great IMO @Fluotonic. I didn't have that much knowledge about the Canadian tax system when I made #31 :) |
Hey @Archanium ! Yeah, taxes are a real challenge, honestly... Your work was really helpful anyway so thank you for that :-) |
@Fluotonic You need to rebase your branch, you can't just recommit changes like you did in 6dc30f9 Also, you can't specify a version in composer.json, the maintainer decides when to tag a release and how to number it, it has no relation to what's in the files. |
Hey @bojanz, sorry about the version number. That was intended for my other branch only but I've still to learn more about how Git works ;-) I tried to rebase the master as you aksed me to. Can you let me know if it worked? Thanks! |
I also just fixed the conflicts that were mentioned here. I hope all is good now :-) |
Hi @bojanz! I'm diving back into the "tax world" for a project and I just stumbled upon this very old pull request I left at the time... Honestly, I've no idea if the last change I just made to remove conflicts can make a difference for the pull request. But just in case it works, this would be good for your package, I guess. My knowledge about Git is still fairly limited, so bear with me ;-) Anyway, feel free to let me know if I can help. Cheers! |
Hey everyone,
I live in Canada and I had to work on something reliable for taxes here. I've seen a previous work (4 years ago) that had been left as is. The base was already good but a few errors were left in zones and tax types. I've done some cleanup and now it works well in my app.
The resolver was also not taking into account the fact that, in Canada, you can't charge provincial taxes to a client in another province if your business is not registered there. Why? Simply because you could not remit your collected tax to the government at the end of you exercise (your need your tax numbers for that).
The new logic now takes care of this, as well as making sure Federal taxes are always applied inside Canada.
Please let me know if anything is missing. If all is good, feel free to merge this with the master branch.
Thanks!