Hi Mike,
Yes, it's the email address, not the merchant number.
Do you mean putting # in front of the line $sCountry =~ s/^UK$/GB/;?
So
my $sCountry = $::g_LocationInfo{INVOICE_COUNTRY_CODE};
#$sCountry =~ s/^UK$/GB/;
my $sState = $::InvoiceContact{ADDRESS4};
if ('US' eq $sCountry)
{
#
# Only send state code for US addresses
#
$sState = ($::g_LocationInfo{INVOICE_REGION_CODE} ne $ActinicOrder::UNDEFINED_REGION) ?
ActinicLocations::GetISOInvoiceRegionCode() : $::InvoiceContact{ADDRESS4};
}
Thanks again
Yes, it's the email address, not the merchant number.
Do you mean putting # in front of the line $sCountry =~ s/^UK$/GB/;?
So
my $sCountry = $::g_LocationInfo{INVOICE_COUNTRY_CODE};
#$sCountry =~ s/^UK$/GB/;
my $sState = $::InvoiceContact{ADDRESS4};
if ('US' eq $sCountry)
{
#
# Only send state code for US addresses
#
$sState = ($::g_LocationInfo{INVOICE_REGION_CODE} ne $ActinicOrder::UNDEFINED_REGION) ?
ActinicLocations::GetISOInvoiceRegionCode() : $::InvoiceContact{ADDRESS4};
}
Thanks again
Comment