diff options
author | ivan <ivan> | 2011-01-20 09:51:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-01-20 09:51:58 +0000 |
commit | fa51a66531110a8f10ff9c78d4f800ffc2871d83 (patch) | |
tree | 52cadc8cbec75d103e8d2cbde45777b881d0600c /FS | |
parent | efa56e24ea3e4ab8f09ef13c2cbdcaa58e975e4e (diff) |
add cust_main-status_module to control how customers with cancelled recurring but un-cancelled one time charges are recognized, RT#10478
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 84e57b22b..852c523d1 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -4228,6 +4228,14 @@ and customer address. Include units.', 'type' => 'checkbox', }, + { + 'key' => 'cust_main-status_module', + 'section' => 'UI', + 'description' => 'Which module to use for customer status display. The "Classic" module (the default) considers accounts with cancelled recurring packages but un-cancelled one-time charges Inactive. The "Recurring" module considers those customers Cancelled.', #other differences? + 'type' => 'select', + 'select_enum' => [ 'Classic', 'Recurring' ], + }, + { key => "apacheroot", section => "deprecated", description => "<b>DEPRECATED</b>", type => "text" }, { key => "apachemachine", section => "deprecated", description => "<b>DEPRECATED</b>", type => "text" }, { key => "apachemachines", section => "deprecated", description => "<b>DEPRECATED</b>", type => "text" }, |