72456: Directions - override company_address
[freeside.git] / FS / FS / payby.pm
index 11bc184..2fccb19 100644 (file)
@@ -107,6 +107,12 @@ tie %hash, 'Tie::IxHash',
     longname  => 'Western Union',
     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
   },
+  'IDTP' => {
+    tinyname  => 'IDT',
+    shortname => 'IDT Payment Services',
+    longname  => 'IDT Payment Services',
+    cust_main => '', #this is a payment type only
+  },
   'MCRD' => { #not the same as DCRD
     tinyname  => 'card',
     shortname => 'Manual credit card', # initial payment, then billing
@@ -261,6 +267,17 @@ sub payment_payby2longname {
   map { $_ => $hash{$_}->{longname} } $self->payment_payby;
 }
 
+=item payment_payby2payname
+
+Returns hash, keys are L</payment_payby> types, values are payby payname.
+
+=cut
+
+sub payment_payby2payname {
+  my $self = shift;
+  map { $_ => $self->payname($_) } $self->payment_payby;
+}
+
 =back
 
 =head1 BUGS