4 use vars qw( @ISA $DEBUG %import_info %export_info $conf );
7 use FS::Record qw( dbh qsearch qsearchs );
11 @ISA = qw(FS::Record);
15 FS::pay_batch - Object methods for pay_batch records
21 $record = new FS::pay_batch \%hash;
22 $record = new FS::pay_batch { 'column' => 'value' };
24 $error = $record->insert;
26 $error = $new_record->replace($old_record);
28 $error = $record->delete;
30 $error = $record->check;
34 An FS::pay_batch object represents an payment batch. FS::pay_batch inherits
35 from FS::Record. The following fields are currently supported:
39 =item batchnum - primary key
41 =item payby - CARD or CHEK
43 =item status - O (Open), I (In-transit), or R (Resolved)
58 Creates a new batch. To add the batch to the database, see L<"insert">.
60 Note that this stores the hash reference, not a distinct copy of the hash it
61 points to. You can ask the object for a copy with the I<hash> method.
65 # the new method can be inherited from FS::Record, if a table method is defined
67 sub table { 'pay_batch'; }
71 Adds this record to the database. If there is an error, returns the error,
72 otherwise returns false.
76 # the insert method can be inherited from FS::Record
80 Delete this record from the database.
84 # the delete method can be inherited from FS::Record
86 =item replace OLD_RECORD
88 Replaces the OLD_RECORD with this one in the database. If there is an error,
89 returns the error, otherwise returns false.
93 # the replace method can be inherited from FS::Record
97 Checks all fields to make sure this is a valid batch. If there is
98 an error, returns the error, otherwise returns false. Called by the insert
103 # the check method should currently be supplied - FS::Record contains some
104 # data checking routines
110 $self->ut_numbern('batchnum')
111 || $self->ut_enum('payby', [ 'CARD', 'CHEK' ])
112 || $self->ut_enum('status', [ 'O', 'I', 'R' ])
114 return $error if $error;
133 $self->status(shift);
134 $self->download(time)
135 if $self->status eq 'I' && ! $self->download;
137 if $self->status eq 'R' && ! $self->upload;
141 # further false laziness
143 %import_info = %export_info = ();
144 foreach my $INC (@INC) {
145 warn "globbing $INC/FS/pay_batch/*.pm\n" if $DEBUG;
146 foreach my $file ( glob("$INC/FS/pay_batch/*.pm")) {
147 warn "attempting to load batch format from $file\n" if $DEBUG;
148 $file =~ /\/(\w+)\.pm$/;
151 my ($import, $export, $name) =
152 eval "use FS::pay_batch::$mod;
153 ( \\%FS::pay_batch::$mod\::import_info,
154 \\%FS::pay_batch::$mod\::export_info,
155 \$FS::pay_batch::$mod\::name)";
156 $name ||= $mod; # in case it's not defined
158 # in FS::cdr this is a die, not a warn. That's probably a bug.
159 warn "error using FS::pay_batch::$mod (skipping): $@\n";
162 if(!keys(%$import)) {
163 warn "no \%import_info found in FS::pay_batch::$mod (skipping)\n";
166 $import_info{$name} = $import;
168 if(!keys(%$export)) {
169 warn "no \%export_info found in FS::pay_batch::$mod (skipping)\n";
172 $export_info{$name} = $export;
177 =item import_results OPTION => VALUE, ...
179 Import batch results.
183 I<filehandle> - open filehandle of results file.
185 I<format> - "csv-td_canada_trust-merchant_pc_batch", "csv-chase_canada-E-xactBatch", "ach-spiritone", or "PAP"
192 my $param = ref($_[0]) ? shift : { @_ };
193 my $fh = $param->{'filehandle'};
194 my $format = $param->{'format'};
195 my $info = $import_info{$format}
196 or die "unknown format $format";
198 my $job = $param->{'job'};
199 $job->update_statustext(0) if $job;
201 my $filetype = $info->{'filetype'}; # CSV or fixed
202 my @fields = @{ $info->{'fields'}};
203 my $formatre = $info->{'formatre'}; # for fixed
205 my $begin_condition = $info->{'begin_condition'};
206 my $end_condition = $info->{'end_condition'};
207 my $end_hook = $info->{'end_hook'};
208 my $skip_condition = $info->{'skip_condition'};
209 my $hook = $info->{'hook'};
210 my $approved_condition = $info->{'approved'};
211 my $declined_condition = $info->{'declined'};
213 my $csv = new Text::CSV_XS;
215 local $SIG{HUP} = 'IGNORE';
216 local $SIG{INT} = 'IGNORE';
217 local $SIG{QUIT} = 'IGNORE';
218 local $SIG{TERM} = 'IGNORE';
219 local $SIG{TSTP} = 'IGNORE';
220 local $SIG{PIPE} = 'IGNORE';
222 my $oldAutoCommit = $FS::UID::AutoCommit;
223 local $FS::UID::AutoCommit = 0;
226 my $reself = $self->select_for_update;
228 unless ( $reself->status eq 'I' ) {
229 $dbh->rollback if $oldAutoCommit;
230 return "batchnum ". $self->batchnum. "no longer in transit";
233 my $error = $self->set_status('R');
235 $dbh->rollback if $oldAutoCommit;
242 # Order of operations has been changed here.
243 # We now slurp everything into @all_values, then
244 # process one line at a time.
246 if ($filetype eq 'XML') {
247 eval "use XML::Simple";
249 my @xmlkeys = @{ $info->{'xmlkeys'} }; # for XML
250 my $xmlrow = $info->{'xmlrow'}; # also for XML
252 # Do everything differently.
253 my $data = XML::Simple::XMLin($fh, KeepRoot => 1);
255 # $xmlrow = [ RootKey, FirstLevelKey, SecondLevelKey... ]
256 $rows = $rows->{$_} foreach( @$xmlrow );
257 if(!defined($rows)) {
258 $dbh->rollback if $oldAutoCommit;
259 return "can't find rows in XML file";
261 $rows = [ $rows ] if ref($rows) ne 'ARRAY';
262 foreach my $row (@$rows) {
263 push @all_values, [ @{$row}{@xmlkeys}, $row ];
267 while ( defined($line=<$fh>) ) {
269 next if $line =~ /^\s*$/; #skip blank lines
271 if ($filetype eq "CSV") {
272 $csv->parse($line) or do {
273 $dbh->rollback if $oldAutoCommit;
274 return "can't parse: ". $csv->error_input();
276 push @all_values, [ $csv->fields(), $line ];
277 }elsif ($filetype eq 'fixed'){
278 my @values = ( $line =~ /$formatre/ );
280 $dbh->rollback if $oldAutoCommit;
281 return "can't parse: ". $line;
284 push @all_values, \@values;
286 $dbh->rollback if $oldAutoCommit;
287 return "Unknown file type $filetype";
293 foreach (@all_values) {
296 $job->update_statustext(int(100 * $num/scalar(@all_values)));
301 my $line = pop @values;
302 foreach my $field ( @fields ) {
303 my $value = shift @values;
305 $hash{$field} = $value;
308 if ( defined($begin_condition) ) {
309 if ( &{$begin_condition}(\%hash, $line) ) {
310 undef $begin_condition;
317 if ( defined($end_condition) and &{$end_condition}(\%hash, $line) ) {
319 $error = &{$end_hook}(\%hash, $total, $line) if defined($end_hook);
321 $dbh->rollback if $oldAutoCommit;
327 if ( defined($skip_condition) and &{$skip_condition}(\%hash, $line) ) {
332 qsearchs('cust_pay_batch', { 'paybatchnum' => $hash{'paybatchnum'}+0 } );
333 unless ( $cust_pay_batch ) {
334 return "unknown paybatchnum $hash{'paybatchnum'}\n";
336 my $custnum = $cust_pay_batch->custnum,
337 my $payby = $cust_pay_batch->payby,
339 my $new_cust_pay_batch = new FS::cust_pay_batch { $cust_pay_batch->hash };
341 &{$hook}(\%hash, $cust_pay_batch->hashref);
343 if ( &{$approved_condition}(\%hash) ) {
345 $new_cust_pay_batch->status('Approved');
347 } elsif ( &{$declined_condition}(\%hash) ) {
349 $new_cust_pay_batch->status('Declined');
353 my $error = $new_cust_pay_batch->replace($cust_pay_batch);
355 $dbh->rollback if $oldAutoCommit;
356 return "error updating status of paybatchnum $hash{'paybatchnum'}: $error\n";
359 if ( $new_cust_pay_batch->status =~ /Approved/i ) {
361 my $cust_pay = new FS::cust_pay ( {
362 'custnum' => $custnum,
364 'paybatch' => $self->batchnum,
365 'payinfo' => ( $hash{'payinfo'} || $cust_pay_batch->payinfo ),
366 map { $_ => $hash{$_} } (qw( paid _date )),
368 $error = $cust_pay->insert;
370 $dbh->rollback if $oldAutoCommit;
371 return "error adding payment paybatchnum $hash{'paybatchnum'}: $error\n";
373 $total += $hash{'paid'};
375 $cust_pay->cust_main->apply_payments;
377 } elsif ( $new_cust_pay_batch->status =~ /Declined/i ) {
379 #false laziness w/cust_main::collect
381 my $due_cust_event = $new_cust_pay_batch->cust_main->due_cust_event(
382 #'check_freq' => '1d', #?
383 'eventtable' => 'cust_pay_batch',
384 'objects' => [ $new_cust_pay_batch ],
386 unless( ref($due_cust_event) ) {
387 $dbh->rollback if $oldAutoCommit;
388 return $due_cust_event;
391 foreach my $cust_event ( @$due_cust_event ) {
395 #re-eval event conditions (a previous event could have changed things)
396 next unless $cust_event->test_conditions;
398 if ( my $error = $cust_event->do_event() ) {
399 # gah, even with transactions.
400 #$dbh->commit if $oldAutoCommit; #well.
401 $dbh->rollback if $oldAutoCommit;
411 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
419 sub process_import_results {
421 my $param = thaw(decode_base64(shift));
422 $param->{'job'} = $job;
423 warn Dumper($param) if $DEBUG;
424 my $batchnum = delete $param->{'batchnum'} or die "no batchnum specified\n";
425 my $batch = FS::pay_batch->by_key($batchnum) or die "batchnum '$batchnum' not found\n";
427 my $file = $param->{'uploaded_files'} or die "no files provided\n";
428 $file =~ s/^(\w+):([\.\w]+)$/$2/;
429 my $dir = '%%%FREESIDE_CACHE%%%/cache.' . $FS::UID::datasrc;
430 open( $param->{'filehandle'},
433 or die "unable to open '$file'.\n";
434 my $error = $batch->import_results($param);
436 die $error if $error;
439 # Formerly httemplate/misc/download-batch.cgi
442 my $conf = new FS::Conf;
443 my $format = shift || $conf->config('batch-default_format')
444 or die "No batch format configured\n";
445 my $info = $export_info{$format} or die "Format not found: '$format'\n";
446 &{$info->{'init'}}($conf) if exists($info->{'init'});
448 my $curuser = $FS::CurrentUser::CurrentUser;
450 my $oldAutoCommit = $FS::UID::AutoCommit;
451 local $FS::UID::AutoCommit = 0;
455 my $status = $self->status;
456 if ($status eq 'O') {
458 my $error = $self->set_status('I');
459 die "error updating pay_batch status: $error\n" if $error;
460 } elsif ($status eq 'I' && $curuser->access_right('Reprocess batches')) {
463 die "No pending batch.\n";
470 my @cust_pay_batch = sort { $a->paybatchnum <=> $b->paybatchnum }
471 qsearch('cust_pay_batch', { batchnum => $self->batchnum } );
473 my $h = $info->{'header'};
474 if(ref($h) eq 'CODE') {
475 $batch .= &$h($self, \@cust_pay_batch) . "\n";
480 foreach my $cust_pay_batch (@cust_pay_batch) {
481 if($first_download) {
482 my $balance = $cust_pay_batch->cust_main->balance;
484 if($balance <= 0) { # then don't charge this customer
485 $error = $cust_pay_batch->delete;
486 undef $cust_pay_batch;
488 elsif($balance < $cust_pay_batch->amount) { # then reduce the charge to the remaining balance
489 $cust_pay_batch->amount($balance);
490 $error = $cust_pay_batch->replace;
492 # else $balance >= $cust_pay_batch->amount
494 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
498 if($cust_pay_batch) { # that is, it wasn't deleted
500 $batchtotal += $cust_pay_batch->amount;
501 $batch .= &{$info->{'row'}}($cust_pay_batch, $self, $batchcount, $batchtotal) . "\n";
504 my $f = $info->{'footer'};
505 if(ref($f) eq 'CODE') {
506 $batch .= &$f($self, $batchcount, $batchtotal) . "\n";
512 if ($info->{'autopost'}) {
513 my $error = &{$info->{'autopost'}}($self, $batch);
515 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
520 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
528 status is somewhat redundant now that download and upload exist
532 L<FS::Record>, schema.html from the base documentation.