MV_STATE_TABLE — name of database containing state, country and province information
Table to search for state-related information, such as state names, postcodes, tax rates and shipping methods available.
Interchange 5.9.0:
Source: lib/Vend/Interpolate.pm
Line 5553 (context shows lines 5543-5557 in tax_vat():5526)
$type =~ s/^\s+//;
$type =~ s/\s+$//;
my @taxes;
if($type =~ /^(\w+)$/) {
my $sfield = $1;
my $state = $opt->{state} || $::Values->{$sfield};
return 0 if ! $state;
my $stable = $opt->{state_table}
|| $::Variable->{MV_STATE_TABLE}
|| 'state';
my $s_taxfield = $opt->{state_tax_field}
|| $::Variable->{MV_STATE_TAX_FIELD}
|| 'tax';