MV_PAYMENT_ID — specifies merchant identifier
Interchange 5.9.0:
Source: lib/Vend/Payment/ECHO.pm
Line 300 (context shows lines 290-304 in echo():274)
#::logDebug("echo called, args=" . ::uneval(\@_));
my (%actual) = map_actual();
my @errMsgs = ();
# Required for validation
if (! $user) {
$user = $opt->{id} ||
charge_param('id') ||
$::Variable->{ECHO_PAYMENT_ID} ||
$::Variable->{MV_PAYMENT_ID} ||
$::Variable->{CYBER_ID}
or push @errMsgs, "No payment ID found.";
}
Source: lib/Vend/Payment/Protx2.pm
Line 600 (context shows lines 590-604 in protx():525)
return %result;
}
}
# wrap around everything to bottom
else {
my %actual = map_actual();
$actual = \%actual;
$opt = {};
#::logDebug("actual map result: " . ::uneval($actual));
$vendor = $opt->{id} || charge_param('id') || $::Variable->{MV_PAYMENT_ID};
$opt->{host} = charge_param('host') || $::Variable->{MV_PAYMENT_HOST} \
|| 'ukvpstest.protx.com';
$opt->{use_wget} = charge_param('use_wget') || '1';
$opt->{port} = '443';
Source: lib/Vend/Payment/SagePay.pm
Line 630 (context shows lines 620-634 in sagepay():576)
my $billingState;
my $deliveryState;
my %result;
my %query;
my (%actual) = map_actual();
$actual = \%actual;
$opt = {};
$vendor = $opt->{id} || charge_param('id') || $::Variable->{MV_PAYMENT_ID};
$opt->{host} = charge_param('host') || $::Variable->{MV_PAYMENT_HOST} || 'live.sagepay.com';
$sagepayrequest = $opt->{sagepayrequest} = charge_param('sagepayrequest') || 'post';
$opt->{use_wget} = charge_param('use_wget') || '1';
$opt->{port} = '443';