From: Jonathan Prykop Date: Wed, 6 Jan 2016 05:08:57 +0000 (-0600) Subject: RT#38671: Do not include charges and credits from failed signup processing [v4 only... X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=9ee7f636a8d23de9634561c9a6aae1e79453b2e5 RT#38671: Do not include charges and credits from failed signup processing [v4 only, modern reason handling] --- diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 138d0fab8..6803a2140 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -228,7 +228,7 @@ sub void { unless (ref($reason) || !$reason) { $reason = FS::reason->new_or_existing( - 'class' => 'X', + 'class' => 'I', 'type' => 'Void invoice', 'reason' => $reason ); diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index aea776a80..d3290bfcf 100644 --- a/FS/FS/cust_bill_pkg.pm +++ b/FS/FS/cust_bill_pkg.pm @@ -337,7 +337,7 @@ sub void { unless (ref($reason) || !$reason) { $reason = FS::reason->new_or_existing( - 'class' => 'X', + 'class' => 'I', 'type' => 'Void invoice', 'reason' => $reason );