diff options
author | ivan <ivan> | 2009-05-26 01:35:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-05-26 01:35:16 +0000 |
commit | 8d9be02c9965db4c4a48a2221455160685a95462 (patch) | |
tree | 0d618b0c7cff7dbd43631d1c2d28008479e531b9 /FS | |
parent | 208add41d52153ccff338fe0f1eafbc0c462a2ed (diff) |
add a config option for some basic tax grouping by name, RT#5446
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 87e8517de..8b27610a7 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -1380,7 +1380,7 @@ worry that config_items is freeside-specific and icky. { 'key' => 'selfservice_server-base_url', 'section' => '', - 'description' => 'Base URL for the self-service web interface - necessary for special provisioning widgets to find their way.', + 'description' => 'Base URL for the self-service web interface - necessary for some widgets to find their way, including retrieval of non-US state information and phone number provisioning.', 'type' => 'text', }, @@ -2802,6 +2802,13 @@ worry that config_items is freeside-specific and icky. 'type' => 'text', }, + { + 'key' => 'tax-report_groups', + 'section' => '', + 'description' => 'List of grouping possibilities for tax names on reports, one per line, "label op value" (op can be = or !=).', + 'type' => 'textarea', + }, + ); 1; |