summaryrefslogtreecommitdiff
path: root/FS/FS/payby.pm
blob: b8496558773f37b195bc637e3f6f231e6370348c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package FS::payby;

use strict;
use vars qw(%hash %payby2bop);
use Tie::IxHash;
use Business::CreditCard;

=head1 NAME

FS::payby - Object methods for payment type records

=head1 SYNOPSIS

  use FS::payby;

  #for now...

  my @payby = FS::payby->payby;

  my $bool = FS::payby->can_payby('cust_main', 'CARD');

  tie my %payby, 'Tie::IxHash', FS::payby->payby2longname

  my @cust_payby = FS::payby->cust_payby;

  tie my %payby, 'Tie::IxHash', FS::payby->cust_payby2longname

=head1 DESCRIPTION

Payment types.

=head1 METHODS

=over 4 

=item

=cut

# paybys can be any/all of:
# - a customer saved payment type (cust_payby.payby)
# - a payment or refund type (cust_pay.payby, cust_pay_batch.payby, cust_refund.payby)

# customer methods that start with 'D' will be interpreted as on-demand

tie %hash, 'Tie::IxHash',
  'CARD' => {
    tinyname  => 'card',
    shortname => 'Credit card',
    longname  => 'Credit card (automatic)',
    realtime  => 1,
  },
  'DCRD' => {
    tinyname  => 'card',
    shortname => 'Credit card',
    longname  => 'Credit card (on-demand)',
    cust_pay  => 'CARD', #this is a customer type only, payments are CARD...
    realtime  => 1,
  },
  'CHEK' => {
    tinyname  => 'check',
    shortname => 'Electronic check',
    longname  => 'Electronic check (automatic)',
    realtime  => 1,
  },
  'DCHK' => {
    tinyname  => 'check',
    shortname => 'Electronic check',
    longname  => 'Electronic check (on-demand)',
    cust_pay  => 'CHEK', #this is a customer type only, payments are CHEK...
    realtime  => 1,
  },
  'BILL' => {
    tinyname  => 'billing',
    shortname => 'Billing',
    payname   => 'Check',
    longname  => 'Billing',
    cust_main => '', #no longer a customer type
  },
  'PPAL' => {
    tinyname  => 'PayPal',
    shortname => 'PayPal',
    longname  => 'PayPal',
    cust_main => '', #not yet a customer type, but could be once we can do
                     # invoice presentment via paypal
  },
  'PREP' => {
    tinyname  => 'prepaid card',
    shortname => 'Prepaid card',
    longname  => 'Prepaid card',
    cust_main => '', #this is a payment type only
  },
  'CASH' => {
    tinyname  => 'cash',
    shortname => 'Cash', # initial payment, then billing
    longname  => 'Cash',
    cust_main => '', #this is a payment type only
  },
  'WEST' => {
    tinyname  => 'western union',
    shortname => 'Western Union', # initial payment, then billing
    longname  => 'Western Union',
    cust_main => '', #this is a payment type only
  },
  '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
    longname  => 'Manual credit card', 
    cust_main => '', #this is a payment type only
  },
  'MCHK' => { #not the same as DCHK
    tinyname  => 'card',
    shortname => 'Manual electronic check', # initial payment, then billing
    longname  => 'Manual electronic check', 
    cust_main => '', #this is a payment type only
  },
  'APPL' => {
    tinyname  => 'apple store',
    shortname => 'Apple Store',
    longname  => 'Apple Store',
    cust_main => '', #this is a payment type only
  },
  'ANRD' => {
    tinyname  => 'android market',
    shortname => 'Android Market',
    longname  => 'Android Market',
    cust_main => '', #this is a payment type only
  },
  'EDI' => {
    tinyname  => 'EDI',
    shortname => 'Electronic Debit (EDI)',
    longname  => 'Electronic Debit (EDI)',
    cust_main => '', #not a customer type
  },
  'WIRE' => {
    tinyname  => 'Wire',
    shortname => 'Wire transfer',
    longname  => 'Wire transfer',
    cust_main => '', #not a customer type
  },
  'CBAK' => {
    tinyname  => 'chargeback',
    shortname => 'Chargeback',
    longname  => 'Chargeback',
    cust_main => '', # not a customer type
  },
;

sub payby {
  keys %hash;
}

sub can_payby {
  my( $self, $table, $payby ) = @_;

  #return "Illegal payby" unless $hash{$payby};
  return 0 unless $hash{$payby};

  $table = 'cust_pay' if $table =~ /^cust_(pay_pending|pay_batch|pay_void|refund)$/;
  return 0 if exists( $hash{$payby}->{$table} );

  return 1;
}

sub realtime {  # can use realtime payment facilities
  my( $self, $payby ) = @_;

  return 0 unless $hash{$payby};
  return 0 unless exists( $hash{$payby}->{realtime} );

  return $hash{$payby}->{realtime};
}

sub payby2shortname {
  my $self = shift;
  map { $_ => $hash{$_}->{shortname} } $self->payby;
}

sub payby2longname {
  my $self = shift;
  map { $_ => $hash{$_}->{longname} } $self->payby;
}

sub shortname {
  my( $self, $payby ) = @_;
  $hash{$payby}->{shortname};
}

sub payname {
  my( $self, $payby ) = @_;
  #$hash{$payby}->{payname} || $hash{$payby}->{shortname};
  exists($hash{$payby}->{payname})
    ? $hash{$payby}->{payname}
    : $hash{$payby}->{shortname};
}

sub longname {
  my( $self, $payby ) = @_;
  $hash{$payby}->{longname};
}

%payby2bop = (
  'CARD' => 'CC',
  'CHEK' => 'ECHECK',
  'MCRD' => 'CC', #?  but doesn't MCRD mean _offline_ card?  i think it got
                  # overloaded for third-party card payments -- but no one is
                  # doing those other than paypal now
  'PPAL' => 'PAYPAL',
);

sub payby2bop {
  my( $self, $payby ) = @_;
  $payby2bop{ $self->payby2payment($payby) };
}

sub payby2payment {
  my( $self, $payby ) = @_;
  $hash{$payby}{'cust_pay'} || $payby;
}

sub cust_payby {
  my $self = shift;
  grep { ! exists $hash{$_}->{cust_main} } $self->payby;
}

sub cust_payby2shortname {
  my $self = shift;
  map { $_ => $hash{$_}->{shortname} } $self->cust_payby;
}

sub cust_payby2longname {
  my $self = shift;
  map { $_ => $hash{$_}->{longname} } $self->cust_payby;
}

=item payment_payby

Returns all values of payby that can be used by payments.

=cut

sub payment_payby {
  my $self = shift;
  grep { ! exists $hash{$_}->{cust_pay} } $self->payby;
}

=item payment_payby2longname

Returns hash, keys are L</payment_payby> types, values are payby longname.

=cut

sub payment_payby2longname {
  my $self = shift;
  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

This should eventually be an actual database table, and all tables that
currently have a char payby field should have a foreign key into here instead.

=head1 SEE ALSO

=cut

1;