TAXCOUNTRY — (partly documented)
Allows you to supply an alternate string of valid countries to override the standard Country validation.
Interchange 5.7.0:
Source: lib/Vend/Interpolate.pm
Line 5403 (context shows lines 5393-5407 in fly_tax():5400)
switch_discount_space($oldspace) if defined $oldspace;
return $taxable;
}
sub fly_tax {
my ($area, $opt) = @_;
if(my $country_check = $::Variable->{TAXCOUNTRY}) {
$country_check =~ /\b$::Values->{country}\b/
or return 0;
}