summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-01-05 23:29:42 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-01-05 23:29:42 -0600
commitc47980a8d9e1b83a80232674a57a875e319f9643 (patch)
tree0b6b87a8b3f921c6e17da55acb67a5db1e054ab2
parent9ee7f636a8d23de9634561c9a6aae1e79453b2e5 (diff)
RT#38671: Do not include charges and credits from failed signup processing [v4 only, default reason type]
-rw-r--r--FS/FS/cust_bill.pm2
-rw-r--r--FS/FS/cust_bill_pkg.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 6803a2140..3ee6d4736 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -229,7 +229,7 @@ sub void {
unless (ref($reason) || !$reason) {
$reason = FS::reason->new_or_existing(
'class' => 'I',
- 'type' => 'Void invoice',
+ 'type' => 'Invoice void',
'reason' => $reason
);
}
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm
index d3290bfcf..e7860e071 100644
--- a/FS/FS/cust_bill_pkg.pm
+++ b/FS/FS/cust_bill_pkg.pm
@@ -338,7 +338,7 @@ sub void {
unless (ref($reason) || !$reason) {
$reason = FS::reason->new_or_existing(
'class' => 'I',
- 'type' => 'Void invoice',
+ 'type' => 'Invoice void',
'reason' => $reason
);
}