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 5416 (context shows lines 5406-5420 in fly_tax():5413)
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;
}