RT#38363: use cust_payby when saving cards during payments
[freeside.git] / FS / FS / cust_main / Billing_Batch.pm
1 package FS::cust_main::Billing_Batch;
2
3 use strict;
4 use vars qw( $conf );
5 use FS::Record qw( qsearch qsearchs dbh );
6 use FS::pay_batch;
7 use FS::cust_pay_batch;
8 use FS::cust_bill_pay_batch;
9
10 install_callback FS::UID sub { 
11   $conf = new FS::Conf;
12   #yes, need it for stuff below (prolly should be cached)
13 };
14
15 =item batch_card OPTION => VALUE...
16
17 Adds a payment for this invoice to the pending credit card batch (see
18 L<FS::cust_pay_batch>), or, if the B<realtime> option is set to a true value,
19 runs the payment using a realtime gateway.
20
21 Options may include:
22
23 B<amount>: the amount to be paid; defaults to the customer's balance minus
24 any payments in transit.
25
26 B<realtime>: runs this as a realtime payment instead of adding it to a 
27 batch.  Deprecated.
28
29 B<invnum>: sets cust_pay_batch.invnum.
30
31 B<address1>, B<address2>, B<city>, B<state>, B<zip>, B<country>: sets 
32 the billing address for the payment; defaults to the customer's billing
33 location.
34
35 B<payby>, B<payinfo>, B<paydate>, B<payname>: sets the payment method, 
36 payment account, expiration date, and name; defaults to those fields 
37 in cust_main.
38
39 =cut
40
41 sub batch_card {
42   my ($self, %options) = @_;
43
44   my $amount;
45   if (exists($options{amount})) {
46     $amount = $options{amount};
47   }else{
48     $amount = sprintf("%.2f", $self->balance - $self->in_transit_payments);
49   }
50   if ($amount <= 0) {
51     warn(sprintf("Customer balance %.2f - in transit amount %.2f is <= 0.\n",
52         $self->balance,
53         $self->in_transit_payments
54     ));
55     return;
56   }
57   
58   my $invnum = delete $options{invnum};
59
60   #pay fields should all come from either cust_payby or options, not both
61   #  in theory, could just pass payby, and use it to select cust_payby,
62   #  but nothing currently needs that, so not implementing it now
63   die "Incomplete payment details" 
64     if  ($options{payby} || $options{payinfo} || $options{paydate} || $options{payname})
65     && !($options{payby} && $options{payinfo} && $options{paydate} && $options{payname});
66
67   #false laziness with Billing_Realtime
68   my @cust_payby = $self->cust_payby('CARD','CHEK');
69
70   # batch can't try out every one like realtime, just use first one
71   my $cust_payby = $cust_payby[0];
72
73   die "No customer payment info found"
74     unless $options{payinfo} || $cust_payby;
75                                                    
76   my $payby = $options{payby} || $cust_payby->payby;
77
78   if ($options{'realtime'}) {
79     return $self->realtime_bop( FS::payby->payby2bop($payby),
80                                 $amount,
81                                 %options,
82                               );
83   }
84
85   my $oldAutoCommit = $FS::UID::AutoCommit;
86   local $FS::UID::AutoCommit = 0;
87   my $dbh = dbh;
88
89   #this needs to handle mysql as well as Pg, like svc_acct.pm
90   #(make it into a common function if folks need to do batching with mysql)
91   $dbh->do("LOCK TABLE pay_batch IN SHARE ROW EXCLUSIVE MODE")
92     or return "Cannot lock pay_batch: " . $dbh->errstr;
93
94   my %pay_batch = (
95     'status' => 'O',
96     'payby'  => FS::payby->payby2payment($payby),
97   );
98   $pay_batch{agentnum} = $self->agentnum if $conf->exists('batch-spoolagent');
99
100   my $pay_batch = qsearchs( 'pay_batch', \%pay_batch );
101
102   unless ( $pay_batch ) {
103     $pay_batch = new FS::pay_batch \%pay_batch;
104     my $error = $pay_batch->insert;
105     if ( $error ) {
106       $dbh->rollback if $oldAutoCommit;
107       die "error creating new batch: $error\n";
108     }
109   }
110
111   my $old_cust_pay_batch = qsearchs('cust_pay_batch', {
112       'batchnum' => $pay_batch->batchnum,
113       'custnum'  => $self->custnum,
114   } );
115
116   foreach (qw( address1 address2 city state zip country latitude longitude
117                payby payinfo paydate payname ))
118   {
119     $options{$_} = '' unless exists($options{$_});
120   }
121
122   my $loc = $self->bill_location;
123
124   my $cust_pay_batch = new FS::cust_pay_batch ( {
125     'batchnum' => $pay_batch->batchnum,
126     'invnum'   => $invnum || 0,                    # is there a better value?
127                                                    # this field should be
128                                                    # removed...
129                                                    # cust_bill_pay_batch now
130     'custnum'  => $self->custnum,
131     'last'     => $self->getfield('last'),
132     'first'    => $self->getfield('first'),
133     'address1' => $options{address1} || $loc->address1,
134     'address2' => $options{address2} || $loc->address2,
135     'city'     => $options{city}     || $loc->city,
136     'state'    => $options{state}    || $loc->state,
137     'zip'      => $options{zip}      || $loc->zip,
138     'country'  => $options{country}  || $loc->country,
139     'payby'    => $options{payby}    || $cust_payby->payby,
140     'payinfo'  => $options{payinfo}  || $cust_payby->payinfo,
141     'exp'      => $options{paydate}  || $cust_payby->paydate,
142     'payname'  => $options{payname}  || $cust_payby->payname,
143     'amount'   => $amount,                         # consolidating
144   } );
145   
146   $cust_pay_batch->paybatchnum($old_cust_pay_batch->paybatchnum)
147     if $old_cust_pay_batch;
148
149   my $error;
150   if ($old_cust_pay_batch) {
151     $error = $cust_pay_batch->replace($old_cust_pay_batch)
152   } else {
153     $error = $cust_pay_batch->insert;
154   }
155
156   if ( $error ) {
157     $dbh->rollback if $oldAutoCommit;
158     die $error;
159   }
160
161   my $unapplied =   $self->total_unapplied_credits
162                   + $self->total_unapplied_payments
163                   + $self->in_transit_payments;
164   foreach my $cust_bill ($self->open_cust_bill) {
165     #$dbh->commit or die $dbh->errstr if $oldAutoCommit;
166     my $cust_bill_pay_batch = new FS::cust_bill_pay_batch {
167       'invnum' => $cust_bill->invnum,
168       'paybatchnum' => $cust_pay_batch->paybatchnum,
169       'amount' => $cust_bill->owed,
170       '_date' => time,
171     };
172     if ($unapplied >= $cust_bill_pay_batch->amount){
173       $unapplied -= $cust_bill_pay_batch->amount;
174       next;
175     }else{
176       $cust_bill_pay_batch->amount(sprintf ( "%.2f", 
177                                    $cust_bill_pay_batch->amount - $unapplied ));      $unapplied = 0;
178     }
179     $error = $cust_bill_pay_batch->insert;
180     if ( $error ) {
181       $dbh->rollback if $oldAutoCommit;
182       die $error;
183     }
184   }
185
186   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
187   '';
188 }
189
190 =item cust_pay_batch [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
191
192 Returns all batched payments (see L<FS::cust_pay_batch>) for this customer.
193
194 Optionally, a list or hashref of additional arguments to the qsearch call can
195 be passed.
196
197 =cut
198
199 sub cust_pay_batch {
200   my $self = shift;
201   my $opt = ref($_[0]) ? shift : { @_ };
202
203   #return $self->num_cust_statement unless wantarray || keys %$opt;
204
205   $opt->{'table'} = 'cust_pay_batch';
206   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
207   $opt->{'hashref'}{'custnum'} = $self->custnum;
208   $opt->{'order_by'} ||= 'ORDER BY paybatchnum ASC';
209
210   map { $_ } #behavior of sort undefined in scalar context
211     sort { $a->paybatchnum <=> $b->paybatchnum }
212       qsearch($opt);
213 }
214
215 =item in_transit_payments
216
217 Returns the total of requests for payments for this customer pending in 
218 batches in transit to the bank.  See L<FS::pay_batch> and L<FS::cust_pay_batch>
219
220 =cut
221
222 sub in_transit_payments {
223   my $self = shift;
224   my $in_transit_payments = 0;
225   foreach my $pay_batch ( qsearch('pay_batch', {
226     'status' => 'I',
227   } ) ) {
228     foreach my $cust_pay_batch ( qsearch('cust_pay_batch', {
229       'batchnum' => $pay_batch->batchnum,
230       'custnum' => $self->custnum,
231       'status'  => '',
232     } ) ) {
233       $in_transit_payments += $cust_pay_batch->amount;
234     }
235   }
236   sprintf( "%.2f", $in_transit_payments );
237 }
238
239 1;