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/?a=commitdiff_plain;h=74774909afba9aca91bb074d1fbf687d9bed1688;p=freeside.git 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 ccf141b9a..14b9f79b8 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 );