MV_STATE_TAX_FIELD — name of column containing state-wide tax information
Column name in the MV_STATE_TABLE database that will be looked up
to retrieve state-wide tax information.
Interchange 5.7.0:
Source: lib/Vend/Interpolate.pm (rev. 2.310 from Sat Dec 6 00:01:23 2008)
Line 5470 (context shows lines 5460-5474 in tax_vat():5440)
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';
my $s_taxtype = $opt->{tax_type_field}
|| $::Variable->{MV_TAX_TYPE_FIELD}
|| 'tax_name';