Name

TAXSHIPPING — list of geographical identifiers for which taxing is applied

SYNOPSIS

{ area name... }

DESCRIPTION

A space- or comma-separated list of codes for which shipping is taxed and needs to be applied. This is used in conjunction with the FlyTax taxing method.

VARIABLE TYPE

Catalog variable

EXAMPLES

Example:

Variable TAXSHIPPING NV, IL

NOTES

AVAILABILITY

TAXSHIPPING is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Interpolate.pm
Line 5479 (context shows lines 5469-5483 in fly_tax():5462)


if(! $area) {
my $zone = $Vend::Cfg->{SalesTax};
while($zone =~ m/(\w+)/g) {
  last if $area = $::Values->{$1};
}
}
#::logDebug("flytax area=$area");
return 0 unless $area;
my $rates = $::Variable->{TAXRATE};
my $taxable_shipping = $::Variable->{TAXSHIPPING} || '';
my $taxable_handling = $::Variable->{TAXHANDLING} || '';
$rates =~ s/^\s+//;
$rates =~ s/\s+$//;
$area =~ s/^\s+//;

AUTHORS

Interchange Development Group

SEE ALSO

TAXRATE(7ic), TAXHANDLING(7ic), TAXCOUNTRY(7ic)

DocBook! Interchange!