allow "Post Authorize" with order_number but no card info
[Business-OnlinePayment-AuthorizeNet.git] / AuthorizeNet.pm
index 4fe402b..82c2be1 100644 (file)
@@ -1,7 +1,5 @@
 package Business::OnlinePayment::AuthorizeNet;
 
-# $Id: AuthorizeNet.pm,v 1.18 2003-01-22 09:59:02 ivan Exp $
-
 use strict;
 use Carp;
 use Business::OnlinePayment;
@@ -135,8 +133,12 @@ sub submit {
         }
     } elsif ($self->transaction_type() eq 'CC' ) {
       if ( $self->{_content}->{action} eq 'PRIOR_AUTH_CAPTURE' ) {
-        $self->required_fields(qw/type login password action amount
-                                  card_number expiration/);
+          if ( $self->{_content}->{order_number}) {
+              $self->required_fields(qw/type login password action amount/);
+          } else {
+              $self->required_fields(qw/type login password action amount 
+                                        card_number expiration/);
+          }
       } elsif ( $self->{_content}->{action} eq 'VOID' ) {
         $self->required_fields(qw/login password action/);
       } else {
@@ -291,7 +293,8 @@ https://secure.authorize.net/docs/developersguide.pml for details.
 Jason Kohles, jason@mediabang.com
 
 Ivan Kohler <ivan-authorizenet@420.am> updated it for Authorize.Net protocol
-3.0/3.1 and is the current maintainer.
+3.0/3.1 and is the current maintainer.  Please send patches as unified diffs
+(diff -u).
 
 Jason Spence <jspence@lightconsulting.com> contributed support for separate
 Authorization Only and Post Authorization steps and wrote some docs.
@@ -303,6 +306,9 @@ Mike Barry <mbarry@cos.com> sent in a patch for the referer field.
 
 Yuri V. Mkrtumyan <yuramk@novosoft.ru> sent in a patch to add the void action.
 
+Paul Zimmer <AuthorizeNetpm@pzimmer.box.bepress.com> sent in a patch for
+card-less post authorizations.
+
 =head1 SEE ALSO
 
 perl(1). L<Business::OnlinePayment>.