From 66ec38299e2f40271fa1e66c7a4db529a5b261d4 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 29 Jun 2010 04:32:22 +0000 Subject: [PATCH] Ordered status for the limbo between Prospect and Active, RT#8712 --- FS/FS/cust_main.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.11.0