X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FConf.pm;h=8f4d05b3c673e94c81e4434ba400797dd970fed2;hb=c9081050af4a3bd2d151508605493c946b38ff9d;hp=4b55f65a16eb4e11b77621c4cb5b567d45b0b45c;hpb=71b86f3f89e8fdeb7142fa82cdbe3e3afce7a903;p=freeside.git diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 4b55f65a1..8f4d05b3c 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -1060,6 +1060,7 @@ sub reason_type_options { '%m/%d/%Y' => 'MM/DD/YYYY', '%d/%m/%Y' => 'DD/MM/YYYY', '%Y/%m/%d' => 'YYYY/MM/DD', + '%e %b %Y' => 'DD Mon YYYY', ], 'per_locale' => 1, }, @@ -1113,7 +1114,7 @@ sub reason_type_options { { 'key' => 'unapplycredits', 'section' => 'deprecated', - 'description' => 'DEPRECATED, now controlled by ACLs. Used to nable "unapplication" of unclosed credits.', + 'description' => 'DEPRECATED, now controlled by ACLs. Used to enable "unapplication" of unclosed credits.', 'type' => 'checkbox', }, @@ -1560,11 +1561,19 @@ and customer address. Include units.', }, { - 'key' => 'invoice_sections_by_location', + 'key' => 'invoice_sections_method', 'section' => 'invoicing', - 'description' => 'Divide invoice into sections according to service location. Currently, this overrides sectioning by package category.', - 'type' => 'checkbox', - 'per_agent' => 1, + 'description' => 'How to group line items on multi-section invoices.', + 'type' => 'select', + 'select_enum' => [ qw(category location) ], + }, + + { + 'key' => 'summary_subtotals_method', + 'section' => 'invoicing', + 'description' => 'How to group line items when calculating summary subtotals. By default, it will be the same method used for grouping invoice sections.', + 'type' => 'select', + 'select_enum' => [ qw(category location) ], }, #quotations seem broken-ish with sections ATM? @@ -1576,6 +1585,13 @@ and customer address. Include units.', # 'per_agent' => 1, #}, + { + 'key' => 'usage_class_summary', + 'section' => 'invoicing', + 'description' => 'Summarize total usage by usage class in a separate section.', + 'type' => 'checkbox', + }, + { 'key' => 'usage_class_as_a_section', 'section' => 'invoicing', @@ -1691,6 +1707,14 @@ and customer address. Include units.', }, { + 'key' => 'papersize', + 'section' => 'billing', + 'description' => 'Invoice paper size. Default is "letter" (U.S. standard). The LaTeX template must be configured to match this size.', + 'type' => 'select', + 'select_enum' => [ qw(letter a4) ], + }, + + { 'key' => 'money_char', 'section' => '', 'description' => 'Currency symbol - defaults to `$\'', @@ -2869,6 +2893,13 @@ and customer address. Include units.', }, { + 'key' => 'selfservice-password_change_oldpass', + 'section' => 'self-service', + 'description' => 'Require old password to be entered again for password changes (in addition to being logged in), at the API level.', + 'type' => 'checkbox', + }, + + { 'key' => 'selfservice-hide_invoices-taxclass', 'section' => 'self-service', 'description' => 'Hide invoices with only this package tax class from self-service and supress sending (emailing, printing, faxing) them. Typically set to something like "Previous balance" and used when importing legacy invoices into legacy_cust_bill.', @@ -3442,13 +3473,6 @@ and customer address. Include units.', }, { - 'key' => 'cust_pkg-show_fcc_voice_grade_equivalent', - 'section' => 'UI', - 'description' => "Show fields on package definitions for FCC Form 477 classification", - 'type' => 'checkbox', - }, - - { 'key' => 'cust_pkg-large_pkg_size', 'section' => 'UI', 'description' => "In customer view, summarize packages with more than this many services. Set to zero to never summarize packages.", @@ -3463,6 +3487,13 @@ and customer address. Include units.', }, { + 'key' => 'part_pkg-show_fcc_options', + 'section' => 'UI', + 'description' => "Show fields on package definitions for FCC Form 477 classification", + 'type' => 'checkbox', + }, + + { 'key' => 'svc_acct-edit_uid', 'section' => 'shell', 'description' => 'Allow UID editing.', @@ -3882,6 +3913,13 @@ and customer address. Include units.', }, { + 'key' => 'cust_main-enable_order_package', + 'section' => 'UI', + 'description' => 'Display order new package on the basic tab', + 'type' => 'checkbox', + }, + + { 'key' => 'cust_main-edit_calling_list_exempt', 'section' => 'UI', 'description' => 'Display the "calling_list_exempt" checkbox on customer edit.', @@ -4232,6 +4270,16 @@ and customer address. Include units.', }, { + 'key' => 'previous_invoice_history', + 'section' => 'invoicing', + 'description' => 'Show a month-by-month history of the customer\'s '. + 'billing amounts. This requires template '. + 'modification and is currently not supported on the '. + 'stock template.', + 'type' => 'checkbox', + }, + + { 'key' => 'balance_due_below_line', 'section' => 'invoicing', 'description' => 'Place the balance due message below a line. Only meaningful when when invoice_sections is false.', @@ -5701,6 +5749,45 @@ and customer address. Include units.', }, }, + { + 'key' => 'part_pkg-term_discounts', + 'section' => 'billing', + 'description' => 'Enable the term discounts feature. Recommended to keep turned off unless actually using - not well optimized for large installations.', + 'type' => 'checkbox', + }, + + { + 'key' => 'prepaid-never_renew', + 'section' => 'billing', + 'description' => 'Prepaid packages never renew.', + 'type' => 'checkbox', + }, + + { + 'key' => 'agent-disable_counts', + 'section' => 'UI', + 'description' => 'On the agent browse page, disable the customer and package counts. Typically used for very large databases when this page takes too long to render.', + 'type' => 'checkbox', + }, + + { + 'key' => 'tollfree-country', + 'section' => 'telephony', + 'description' => 'Country / region for toll-free recognition', + 'type' => 'select', + 'select_hash' => [ '' => 'NANPA (US/Canada)', + 'AU' => 'Australia', + 'NZ' => 'New Zealand', + ], + }, + + { + 'key' => 'old_fcc_report', + 'section' => '', + 'description' => 'Use the old (pre-2014) FCC Form 477 report format.', + 'type' => 'checkbox', + }, + { key => "apacheroot", section => "deprecated", description => "DEPRECATED", type => "text" }, { key => "apachemachine", section => "deprecated", description => "DEPRECATED", type => "text" }, { key => "apachemachines", section => "deprecated", description => "DEPRECATED", type => "text" },