-
Notifications
You must be signed in to change notification settings - Fork 45
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
18205 Fixed incorrect entity types #730
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,22 +100,22 @@ export const BusinessLookupRequestActions = [ | |
/** Entity types that require business lookup. */ | ||
export const BusinessLookupEntityTypes = [ | ||
EntityTypes.A, | ||
EntityTypes.BC, | ||
EntityTypes.BEN, | ||
EntityTypes.BC, // Benefit Company | ||
EntityTypes.BEN, // invalid? | ||
EntityTypes.C, | ||
EntityTypes.CC, | ||
EntityTypes.CCC, | ||
EntityTypes.CUL, | ||
EntityTypes.CP, | ||
EntityTypes.CR, | ||
EntityTypes.CR, // BC Limited Company | ||
EntityTypes.FR, // Sole Proprietorship | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested FR by creating a name change NR for FM1056109 and verifying that corpnum was populated. |
||
EntityTypes.GP, | ||
EntityTypes.LLC, | ||
EntityTypes.LP, | ||
EntityTypes.PA, | ||
EntityTypes.PAR, | ||
EntityTypes.SO, | ||
EntityTypes.SP, | ||
EntityTypes.ULC, | ||
EntityTypes.UL, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested UL by creating a name change NR for BC0871495 and verifying that corpnum was populated. |
||
EntityTypes.XCP, | ||
EntityTypes.XCR, | ||
EntityTypes.XL, | ||
|
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 think BEN is invalid here but I'm not about to remove it in a hotfix without fully understanding how this list is used 😛
I also checked the other entries in this list, and I think they're OK, but there may be some types missing.
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.
Yeah I agree I had a brief look through namex and I don't believe BEN is valid, but it is probably not worth removing on a hotfix.