return an error for 0 amount payments to avoid a $0 payment getting stuck in declined...
authorivan <ivan>
Sun, 17 Jan 2010 03:31:53 +0000 (03:31 +0000)
committerivan <ivan>
Sun, 17 Jan 2010 03:31:53 +0000 (03:31 +0000)
FS/FS/cust_main.pm

index 9462af5..87ab961 100644 (file)
@@ -3996,6 +3996,8 @@ sub realtime_bop {
     warn "  $_ => $options{$_}\n" foreach keys %options;
   }
 
+  return "Amount must be greater than 0" unless $amount > 0;
+
   unless ( $options{'description'} ) {
     if ( $conf->exists('business-onlinepayment-description') ) {
       my $dtempl = $conf->config('business-onlinepayment-description');