Validating U.S. state tax ID codes
[Date Prev][Date Next]
[Thread Prev][Thread Next]
Validating U.S. state tax ID codes
- From: "Ken-Allison Roberts" <alisonken1 [at] juno.com>
- To: python-stdnum-users [at] lists.arthurdejong.org
- Subject: Validating U.S. state tax ID codes
- Date: Fri, 25 Apr 2014 21:34:28 GMT
The U.S. has SSN (personal) and TIN/EIN (company) tax ID's. I've found that at
least one U.S. state has separate tax exempt ID's that they use for businesses.
California, USA tax number format:
CC CC NNN-NNNNNN
where C is a letter and N is a number.
For validation purposes, ignore the leading letters and validate the number
format only.
If number is 8 digits, use a leading 0 to create a 9-digit number:
0NN-NNNNNN
Otherwise, it's a 9-digit number:
NNN-NNNNNN
I'm looking into other state ID codes and see what format they're following.
I'm posting here since the Tryton dev's suggested number validation be done in
python-stdnum and VAT is a euro-centric number.
- Ken Roberts
Do you Slack? Slackware Linux since 1993
____________________________________________________________
Do THIS before eating carbs (every time)
1 EASY tip to increase fat-burning, lower blood sugar & decrease fat storage
http://thirdpartyoffers.juno.com/TGL3131/535ad52ea76ef552e38e7st04vuc
--
To unsubscribe send an email to
python-stdnum-users-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/python-stdnum-users/
- Validating U.S. state tax ID codes,
Ken-Allison Roberts