-
Notifications
You must be signed in to change notification settings - Fork 72
Add AU-specific strings/details to tax modal #10527
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
Draft
haszari
wants to merge
12
commits into
develop
Choose a base branch
from
add/10525-au-biz-details-modal
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c789faa
Add AU-specific strings/details to tax modal
f1904a8
correct AU tax ID label to "ABN"
56bc83d
Merge branch 'develop' into add/10525-au-biz-details-modal
shendy-a8c 5e064ca
Merge branch 'develop' into add/10525-au-biz-details-modal
shendy-a8c bfc58ab
Changelog.
shendy-a8c 40d7737
Add helper text when user is about to enter ABN number.
shendy-a8c 17416e5
A helper text about what ABN number.
shendy-a8c d6fb8a8
Unit test for AU tax modal.
shendy-a8c 01e65ea
Merge branch 'develop' into add/10525-au-biz-details-modal
shendy-a8c 78e52df
Avoid the need to have an article (a / an).
shendy-a8c 9e21333
Merge branch 'add/10525-au-biz-details-modal' of github.com:Automatti…
shendy-a8c d58123e
Update comment.
shendy-a8c File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm somewhat familiar with this AU side of things, and it seems a bit abnormal to call it a "GST number". Normally, this would instead be labelled as "ABN".
The Stripe Customer Tax ID field labels might serve as an indicator of country-specific terminology, since they've presumably done the hard yards on tax-collecting UX here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, thanks for catching that :) in NZ it's the opposite, your GST is your IRD number, but you label it as
GST number
when appropriate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually wait – no, my comment explains my reasoning.
The value in this field will be an ABN OR an ACN, depending on the merchant. So we either need to be smarter about which is correct, or have something generic (
GST number
) and a hint that it would your ABN or ACN.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But … if AU companies are used to putting an ACN in an ABN field (which could be the case) … then
ABN
would work fine too 🤷🏻There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAIK an
ACN
is not used for GST-related things. A company with anACN
needs to have anABN
as well, which they'll provide to us.We'll only want the merchant's
ABN
, as this is what we're required to provide on the tax invoice.Example: Bunnings
Hence why
GST Number
stood out to me. I agree, it would be OK to use generic wording and the merchant will be OK to figure it out, but we should lean against ambiguity where we can.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the URL you shared in the code comments https://vatstack.com/articles/australian-business-number-abn-validation, it looks like they're getting the
ABN
via theACN
using the ABN lookup tool.We can do this too, but it is added complexity, when it would be easier to require an
ABN
from the merchant rather than have to determine the merchant'sABN
based on theACN
they've provided.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aha! Thanks for digging in to that and clarifying!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed up here f1904a8 – but feel free to jump on the PR / suggest more.