ignore card type for upgrades, RT#32043
authorIvan Kohler <ivan@freeside.biz>
Fri, 12 Feb 2016 18:52:11 +0000 (10:52 -0800)
committerIvan Kohler <ivan@freeside.biz>
Fri, 12 Feb 2016 18:52:11 +0000 (10:52 -0800)
FS/FS/cust_payby.pm

index a686242..030aed6 100644 (file)
@@ -19,6 +19,7 @@ sub nohistory_fields { ('payinfo', 'paycvv'); }
 our $ignore_expired_card = 0;
 our $ignore_banned_card = 0;
 our $ignore_invalid_card = 0;
+our $ignore_cardtype = 0;
 
 our $conf;
 install_callback FS::UID sub { 
@@ -496,6 +497,8 @@ sub check {
 sub check_payinfo_cardtype {
   my $self = shift;
 
+  return '' if $ignore_cardtype;
+
   return '' unless $self->payby =~ /^(CARD|CHEK)$/;
 
   my $payinfo = $self->payinfo;