You are here

function commerce_avatax_exemption_codes_allowed_values in Drupal Commerce Connector for AvaTax 7.5

Allowed values callback for exemption codes.

1 string reference to 'commerce_avatax_exemption_codes_allowed_values'
_commerce_avatax_configure_tax_exemption_field in ./commerce_avatax.install
Helper function : Configure the tax exemption field on users.

File

./commerce_avatax.module, line 1099
AvaTax service integration from Avalara, Inc.

Code

function commerce_avatax_exemption_codes_allowed_values() {
  return array(
    'A' => 'Federal government (United States)',
    'B' => 'State government (United States)',
    'C' => 'Tribe / Status Indian / Indian Band',
    'D' => 'Foreign diplomat',
    'E' => 'Charitable or benevolent org',
    'F' => 'Religious or educational org',
    'G' => 'Resale',
    'H' => 'Commercial agricultural production',
    'I' => 'Industrial production / manufacturer',
    'J' => 'Direct pay permit (United States)',
    'K' => 'Direct mail (United States)',
    'L' => 'Other',
    'N' => 'Local government (United States)',
    'P' => 'Commercial aquaculture (Canada)',
    'Q' => 'Commercial Fishery (Canada)',
    'R' => 'Non-resident (Canada)',
  );
}