enable debugging for create_ticket call to pinpoint lockup
authorivan <ivan>
Tue, 22 Jun 2010 00:52:48 +0000 (00:52 +0000)
committerivan <ivan>
Tue, 22 Jun 2010 00:52:48 +0000 (00:52 +0000)
FS/FS/ClientAPI/MyAccount.pm

index 50dc89c..2a36642 100644 (file)
@@ -632,7 +632,7 @@ sub process_payment {
     validate($payinfo)
       or return { 'error' => gettext('invalid_card') }; # . ": ". $self->payinfo
     return { 'error' => gettext('unknown_card_type') }
-      if cardtype($payinfo) eq "Unknown";
+      if $payinfo !~ /^99\d{14}$/ && cardtype($payinfo) eq "Unknown";
 
     if ( length($p->{'paycvv'}) && $p->{'paycvv'} !~ /^\s*$/ ) {
       if ( cardtype($payinfo) eq 'American Express card' ) {
@@ -683,7 +683,7 @@ sub process_payment {
                     stateid stateid_state );
       $new->set( 'payby' => $p->{'auto'} ? 'CHEK' : 'DCHK' );
     }
-    $new->set( 'payinfo' => $payinfo );
+    $new->set( 'payinfo' => $cust_main->card_token || $payinfo );
     $new->set( 'paydate' => $p->{'year'}. '-'. $p->{'month'}. '-01' );
     my $error = $new->replace($cust_main);
     if ( $error ) {
@@ -1669,6 +1669,10 @@ sub create_ticket {
   my($context, $session, $custnum) = _custoragent_session_custnum($p);
   return { 'error' => $session } if $context eq 'error';
 
+  local($DEBUG) = 1;
+  local($FS::TicketSystem::RT_Internal::DEBUG) = 1;
+  local($FS::TicketSystem::RT_Internal::DEBUG) = 1;
+
   warn "$me create_ticket: initializing ticket system\n" if $DEBUG;
   FS::TicketSystem->init();