MV_COUNTRY_TABLE — name of database containing countries, country codes, etc.
Table to search for country-related information, such as selector and ISO names or shipping methods available.
Interchange 5.7.0:
Source: lib/Vend/Interpolate.pm (rev. 2.309 from Mon Nov 17 00:01:20 2008)
Line 5448 (context shows lines 5438-5452 in tax_vat():5440)
}
sub tax_vat {
my($type, $opt) = @_;
#::logDebug("entering VAT, opts=" . uneval($opt));
my $cfield = $::Variable->{MV_COUNTRY_TAX_VAR} || 'country';
my $country = $opt->{country} || $::Values->{$cfield};
return 0 if ! $country;
my $ctable = $opt->{country_table}
|| $::Variable->{MV_COUNTRY_TABLE}
|| 'country';
my $c_taxfield = $opt->{country_tax_field}
|| $::Variable->{MV_COUNTRY_TAX_FIELD}
|| 'tax';