- Really use 111-1111-1111 if no phone number is provided.
[Business-OnlinePayment-Jety.git] / lib / Business / OnlinePayment / Jety.pm
index a272e8e..be73019 100644 (file)
@@ -10,7 +10,7 @@ use Date::Format;
 use Tie::IxHash;
 
 @ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '0.03';
+$VERSION = '0.04';
 $me = 'Business::OnlinePayment::Jety';
 
 $DEBUG = 0;
@@ -104,15 +104,13 @@ sub submit {
     state
     zip
     email
-    phone
     account_number
     routing_code
     amount
-    ) );
+    description
+  ));
   $self->map_fields;
-  tie my %request, 'Tie::IxHash', (
-    map { $_, $self->{_content}->{$_} } @fields
-    );
+  tie my %request, 'Tie::IxHash', map { $_ => $self->{_content}->{$_} } @fields;
 
   $DB::single = $DEBUG;
   if($self->test_transaction()) {
@@ -170,7 +168,7 @@ Business::OnlinePayment::Jety - Jety Payments ACH backend for Business::OnlinePa
       login          => 'testdrive',
       password       => 'testpass',
       action         => 'Normal Authorization',
-      description    => 'Business::OnlinePayment test',
+      description    => '111-111-1111 www.example.com',
       amount         => '49.95',
       invoice_number => '100100',
       first_name     => 'Jason',
@@ -196,7 +194,9 @@ Business::OnlinePayment::Jety - Jety Payments ACH backend for Business::OnlinePa
 
 =head2 ECHECK
 
-Content required: type, login, password, action, amount, first_name, last_name, account_number, routing_code.
+Content required: type, login, password, action, amount, first_name, last_name, account_number, routing_code, description.
+
+description should be set in the form "111-111-1111 www.example.com"
 
 =head1 DESCRIPTION