X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpayinfo_Mixin.pm;h=01b222634130d6b6ee2fe15a83be00fd07b30f5f;hp=cb9b723184061a6f0c293111f3f4cb69ed9fc3ac;hb=dc83512c36dc6bea2585abada4f88d714c600e55;hpb=375b84b1dcca3fb2f71aa3ac63281164501acc1e diff --git a/FS/FS/payinfo_Mixin.pm b/FS/FS/payinfo_Mixin.pm index cb9b72318..01b222634 100644 --- a/FS/FS/payinfo_Mixin.pm +++ b/FS/FS/payinfo_Mixin.pm @@ -199,10 +199,11 @@ sub payinfo_check { # see parallel checks in cust_payby::check & cust_payby::check_payinfo_cardtype if ( $self->tokenized ) { + $self->set('is_tokenized', 'Y'); #so we don't try to do it again if ( $self->paymask =~ /^\d+x/ ) { $self->set('paycardtype', cardtype($self->paymask)); } else { - $self->set('paycardtype', ''); + $self->set('paycardtype', '') unless $self->paycardtype; #return "paycardtype required ". # "(can't derive from a token and no paymask w/prefix provided)"; } @@ -217,7 +218,7 @@ sub payinfo_check { $payinfo =~ s/\D//g; $self->payinfo($payinfo); if ( $self->payinfo ) { - $self->payinfo =~ /^(\d{13,16}|\d{8,9})$/ + $self->payinfo =~ /^(\d{13,19}|\d{8,9})$/ or return "Illegal (mistyped?) credit card number (payinfo)"; $self->payinfo($1); validate($self->payinfo) or return "Illegal credit card number"; @@ -233,7 +234,7 @@ sub payinfo_check { # if we can't decrypt the card, at least detect the cardtype $self->set('paycardtype', cardtype($self->paymask)); } else { - $self->set('paycardtype', ''); + $self->set('paycardtype', '') unless $self->paycardtype; # return "paycardtype required ". # "(can't derive from a token and no paymask w/prefix provided)"; }