[ic] payment module authorizenet (modifications)

Dwayne interchange-users@icdevgroup.org
Fri May 23 14:14:00 2003


On Fri, 2003-05-23 at 11:52, Philip S. Hempel wrote:
> I placed mv_credit_card_cvv2 and a form on the checkout and that worked
> fine. I do an order and the encrypted card that is emailed get the cvv2
> number.
> Ok for the remap I placed the 
> x_Card_Code => $actual->{mv_credit_card_cvv2}
> 
> x_Card_Code does not map. 

Have you tried:

x_Card_Code => $actual->{cvv2}

I just did a dump of $actual and it spit out (non relevant stuff
snipped):
Vend::Payment:debug: {
  'mv_credit_card_exp_month' => 3,
  'mv_credit_card_number' => '4111111111111111',
  'cvv2' => undef,  <--- undef 'cause I'm not using it right now
}

It looks like mv_credit_card_cvv2 gets remapped, although I didn't poke
through the code too closely. Just a guess, but maybe that'll do it.

- Dwayne