From: ivan Date: Tue, 29 Jun 2010 04:32:22 +0000 (+0000) Subject: Ordered status for the limbo between Prospect and Active, RT#8712 X-Git-Tag: root_of_svc_elec_features~103 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=66ec38299e2f40271fa1e66c7a4db529a5b261d4 Ordered status for the limbo between Prospect and Active, RT#8712 --- diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index c83ae95b7..6d879bcd4 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -7135,6 +7135,8 @@ Returns a status string for this customer, currently: =item prospect - No packages have ever been ordered +=item ordered - Recurring packages all are new (not yet billed). + =item active - One or more recurring packages is active =item inactive - No active recurring packages, but otherwise unsuspended/uncancelled (the inactive status is new - previously inactive customers were mis-identified as cancelled) @@ -7186,8 +7188,8 @@ Returns a hex triplet color string for this customer's status. use vars qw(%statuscolor); tie %statuscolor, 'Tie::IxHash', 'prospect' => '7e0079', #'000000', #black? naw, purple - 'ordered' => '009999', #teal? cyan? 'active' => '00CC00', #green + 'ordered' => '009999', #teal? cyan? 'inactive' => '0000CC', #blue 'suspended' => 'FF9900', #yellow 'cancelled' => 'FF0000', #red