This commit was generated by cvs2svn to compensate for changes in r5562,
[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     longname  => 'Billing',
78   },
79   'PREP' => {
80     tinyname  => 'prepaid card',
81     shortname => 'Prepaid card',
82     longname  => 'Prepaid card',
83     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
84   },
85   'CASH' => {
86     tinyname  => 'cash',
87     shortname => 'Cash', # initial payment, then billing
88     longname  => 'Cash',
89     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
90   },
91   'WEST' => {
92     tinyname  => 'western union',
93     shortname => 'Western Union', # initial payment, then billing
94     longname  => 'Western Union',
95     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
96   },
97   'MCRD' => { #not the same as DCRD
98     tinyname  => 'card',
99     shortname => 'Manual credit card', # initial payment, then billing
100     longname  => 'Manual credit card', 
101     cust_main => 'BILL', #this is a payment type only, customers go to BILL...
102   },
103   'COMP' => {
104     tinyname  => 'comp',
105     shortname => 'Complimentary',
106     longname  => 'Complimentary',
107     cust_pay  => '', # (free) is depricated as a payment type in cust_pay
108   },
109   'CBAK' => {
110     tinyname  => 'chargeback',
111     shortname => 'Chargeback',
112     longname  => 'Chargeback',
113     cust_main => '', # not a customer type
114   },
115 ;
116
117 sub payby {
118   keys %hash;
119 }
120
121 sub can_payby {
122   my( $self, $table, $payby ) = @_;
123
124   #return "Illegal payby" unless $hash{$payby};
125   return 0 unless $hash{$payby};
126
127   $table = 'cust_pay' if $table eq 'cust_pay_batch' || $table eq 'cust_refund';
128   return 0 if exists( $hash{$payby}->{$table} );
129
130   return 1;
131 }
132
133 sub payby2longname {
134   my $self = shift;
135   map { $_ => $hash{$_}->{longname} } $self->payby;
136 }
137
138 sub shortname {
139   my( $self, $payby ) = @_;
140   $hash{$payby}->{shortname};
141 }
142
143 sub longname {
144   my( $self, $payby ) = @_;
145   $hash{$payby}->{longname};
146 }
147
148 %payby2bop = (
149   'CARD' => 'CC',
150   'CHEK' => 'ECHECK',
151 );
152
153 sub payby2bop {
154   my( $self, $payby ) = @_;
155   $payby2bop{ $self->payby2payment($payby) };
156 }
157
158 sub payby2payment {
159   my( $self, $payby ) = @_;
160   $hash{$payby}{'cust_pay'} || $payby;
161 }
162
163 sub cust_payby {
164   my $self = shift;
165   grep { ! exists $hash{$_}->{cust_main} } $self->payby;
166 }
167
168 sub cust_payby2longname {
169   my $self = shift;
170   map { $_ => $hash{$_}->{longname} } $self->cust_payby;
171 }
172
173 =back
174
175 =head1 BUGS
176
177 This should eventually be an actual database table, and all tables that
178 currently have a char payby field should have a foreign key into here instead.
179
180 =head1 SEE ALSO
181
182 =cut
183
184 1;
185