summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Goodman <jgoodman1990@gmail.com>2014-02-25 05:39:29 +0000
committerJoshua Goodman <jgoodman1990@gmail.com>2014-02-25 05:39:29 +0000
commit73e20a91b38b27ad5be79306ba25bdfb5a1252e1 (patch)
tree3ea9ee70a78f72790b62f471b9a100874772e8bc
parent79981f908752492b00cb4bdce3dceb0636fb81dd (diff)
added activate, renewal, term change, and refund reason_type classes
-rw-r--r--FS/FS/reason_type.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/FS/FS/reason_type.pm b/FS/FS/reason_type.pm
index a603809..d66f7b5 100644
--- a/FS/FS/reason_type.pm
+++ b/FS/FS/reason_type.pm
@@ -10,12 +10,20 @@ our %class_name = (
'C' => 'cancel',
'R' => 'credit',
'S' => 'suspend',
+ 'U' => 'activate', #uncancel/unsuspend
+ 'W' => 'renewal',
+ 'T' => 'term change',
+ 'F' => 'refund',
);
our %class_purpose = (
'C' => 'explain why a customer package was cancelled',
'R' => 'explain why a customer was credited',
'S' => 'explain why a customer package was suspended',
+ 'U' => 'explain why a customer package was unsuspended/uncanceled/activated',
+ 'W' => 'explain why a customer package was renewed',
+ 'T' => 'explain why a customer package term was changed',
+ 'F' => 'explain why a customer was refunded',
);
=head1 NAME