X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-paymentech-upload;h=283781dbfb1d6daad2e393cdc0ec11841c994e79;hb=5b0df166c22e13eba83fabee858846ead6a54141;hp=d6ca0cd2817f03236d8a46d62eff10084399de23;hpb=772656864b377bbd2ef2febd40891ef1206b5be0;p=freeside.git diff --git a/FS/bin/freeside-paymentech-upload b/FS/bin/freeside-paymentech-upload index d6ca0cd28..283781dbf 100755 --- a/FS/bin/freeside-paymentech-upload +++ b/FS/bin/freeside-paymentech-upload @@ -41,7 +41,17 @@ my @batches; if($opt_a) { my %criteria = (status => 'O'); $criteria{'payby'} = uc($opt_p) if $opt_p; - @batches = qsearch('pay_batch', \%criteria); + + my $extra_sql; + $extra_sql = " AND ((payby = 'CHEK' AND type != 'CREDIT') OR (payby != 'CHEK'))" unless FS::pay_batch->can_handle_electronic_refunds('paymentech'); + + my %hash = ( + table => 'pay_batch', + hashref => \%criteria, + extra_sql => $extra_sql, + ); + + @batches = qsearch(\%hash); log_and_die("No open batches found".($opt_p ? " of type '$opt_p'" : '').".\n") if !@batches; } @@ -50,6 +60,12 @@ else { log_and_die("batchnum not passed\n".&usage) if !$batchnum; @batches = qsearchs('pay_batch', { batchnum => $batchnum } ); log_and_die("Can't find payment batch '$batchnum'\n") if !@batches; + + if ($batches[0]->type eq "CREDIT") { + warn "running credit\n"; + log_and_die( "Batch number $batchnum is a credit (batch refund) batch, and this format can not handle batch refunds.\n" ) + unless FS::pay_batch->can_handle_electronic_refunds('paymentech'); + } } my $conf = new FS::Conf;