From f2b3bd57f189c837f5c82315e1f6740ab14da1d4 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 17 Jan 2010 03:31:53 +0000 Subject: [PATCH] return an error for 0 amount payments to avoid a $0 payment getting stuck in declined or captured status, RT#6993 --- FS/FS/cust_main.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 9462af51e..87ab9615d 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -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'); -- 2.11.0