b54e5d93852246f5f3a14f9032f9d0f3b330f2fa
[freeside.git] / FS / FS / payby.pm
1 package FS::payby;
2
3 use strict;
4 use vars qw(%hash %payby2bop);
5 use Tie::IxHash;
6 use Business::CreditCard;
7
8
9 =head1 NAME
10
11 FS::payby - Object methods for payment type records
12
13 =head1 SYNOPSIS
14
15   use FS::payby;
16
17   #for now...
18
19   my @payby = FS::payby->payby;
20
21   my $bool = FS::payby->can_payby('cust_main', 'CARD');
22
23   tie my %payby, 'Tie::IxHash', FS::payby->payby2longname
24
25   my @cust_payby = FS::payby->cust_payby;
26
27   tie my %payby, 'Tie::IxHash', FS::payby->cust_payby2longname
28
29 =head1 DESCRIPTION
30
31 Payment types.
32
33 =head1 METHODS
34
35 =over 4 
36
37 =item
38
39 =cut
40
41 # paybys can be any/all of:
42 # - a customer payment type (cust_main.payby)
43 # - a payment or refund type (cust_pay.payby, cust_pay_batch.payby, cust_refund.payby)
44 # - an event type (part_bill_event.payby)
45
46 tie %hash, 'Tie::IxHash',
47   'CARD' => {
48     tinyname  => 'card',
49     shortname => 'Credit card',
50     longname  => 'Credit card (automatic)',
51   },
52   'DCRD' => {
53     tinyname  => 'card',
54     shortname => 'Credit card',
55     longname  => 'Credit card (on-demand)',
56     cust_pay  => 'CARD', #this is a customer type only, payments are CARD...
57   },
58   'CHEK' => {
59     tinyname  => 'check',
60     shortname => 'Electronic check',
61     longname  => 'Electronic check (automatic)',
62   },
63   'DCHK' => {
64     tinyname  => 'check',
65     shortname => 'Electronic check',
66     longname  => 'Electronic check (on-demand)',
67     cust_pay  => 'CHEK', #this is a customer type only, payments are CHEK...
68   },
69   'LECB' => {
70     tinyname  => 'phone bill',
71     shortname => 'Phone bill billing',
72     longname  => 'Phone bill billing',
73   },
74   'BILL' => {
75     tinyname  => 'billing',
76     shortname => 'Billing',
77     payname   => 'Check',
78     longname  => 'Billing',
79   },
80   'PREP' => {
81     tinyname  => 'prepaid card',
82     shortname => 'Prepaid card',
83     longname  => 'Prepaid card',
84     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
85   },
86   'CASH' => {
87     tinyname  => 'cash',
88     shortname => 'Cash', # initial payment, then billing
89     longname  => 'Cash',
90     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
91   },
92   'WEST' => {
93     tinyname  => 'western union',
94     shortname => 'Western Union', # initial payment, then billing
95     longname  => 'Western Union',
96     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
97   },
98   'MCRD' => { #not the same as DCRD
99     tinyname  => 'card',
100     shortname => 'Manual credit card', # initial payment, then billing
101     longname  => 'Manual credit card', 
102     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
103   },
104   'COMP' => {
105     tinyname  => 'comp',
106     shortname => 'Complimentary',
107     longname  => 'Complimentary',
108     cust_pay  => '', # (free) is depricated as a payment type in cust_pay
109   },
110   'CBAK' => {
111     tinyname  => 'chargeback',
112     shortname => 'Chargeback',
113     longname  => 'Chargeback',
114     cust_main => '', # not a customer type
115   },
116 ;
117
118 sub payby {
119   keys %hash;
120 }
121
122 sub can_payby {
123   my( $self, $table, $payby ) = @_;
124
125   #return "Illegal payby" unless $hash{$payby};
126   return 0 unless $hash{$payby};
127
128   $table = 'cust_pay' if $table =~ /^cust_(pay_pending|pay_batch|pay_void|refund)$/;
129   return 0 if exists( $hash{$payby}->{$table} );
130
131   return 1;
132 }
133
134 sub payby2longname {
135   my $self = shift;
136   map { $_ => $hash{$_}->{longname} } $self->payby;
137 }
138
139 sub shortname {
140   my( $self, $payby ) = @_;
141   $hash{$payby}->{shortname};
142 }
143
144 sub payname {
145   my( $self, $payby ) = @_;
146   #$hash{$payby}->{payname} || $hash{$payby}->{shortname};
147   exists($hash{$payby}->{payname})
148     ? $hash{$payby}->{payname}
149     : $hash{$payby}->{shortname};
150 }
151
152 sub longname {
153   my( $self, $payby ) = @_;
154   $hash{$payby}->{longname};
155 }
156
157 %payby2bop = (
158   'CARD' => 'CC',
159   'CHEK' => 'ECHECK',
160 );
161
162 sub payby2bop {
163   my( $self, $payby ) = @_;
164   $payby2bop{ $self->payby2payment($payby) };
165 }
166
167 sub payby2payment {
168   my( $self, $payby ) = @_;
169   $hash{$payby}{'cust_pay'} || $payby;
170 }
171
172 sub cust_payby {
173   my $self = shift;
174   grep { ! exists $hash{$_}->{cust_main} } $self->payby;
175 }
176
177 sub cust_payby2longname {
178   my $self = shift;
179   map { $_ => $hash{$_}->{longname} } $self->cust_payby;
180 }
181
182 =back
183
184 =head1 BUGS
185
186 This should eventually be an actual database table, and all tables that
187 currently have a char payby field should have a foreign key into here instead.
188
189 =head1 SEE ALSO
190
191 =cut
192
193 1;
194