diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-01-09 17:20:29 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-01-09 17:20:29 -0800 |
commit | 6a1f78c1e720126c849d5bdae5950ab91ef52781 (patch) | |
tree | d11164cefb501c1ca88cd989df5978e5b2f13d7f | |
parent | 69b1f712cbc76d6ab2671288c314c2f596af06b9 (diff) |
add cust_bill-line_item-date_style-non_monthly config setting, RT#20890
-rw-r--r-- | FS/FS/Conf.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index d11916faf..2ce0c5708 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -3916,6 +3916,19 @@ and customer address. Include units.', }, { + 'key' => 'cust_bill-line_item-date_style-non_monthly', + 'section' => 'billing', + 'description' => 'If set, override cust_bill-line_item-date_style for non-monthly charges.', + 'type' => 'select', + 'select_hash' => [ '' => 'Default', + 'start_end' => 'STARTDATE-ENDDATE', + 'month_of' => 'Month of MONTHNAME', + 'X_month' => 'DATE_DESC MONTHNAME', + ], + 'per_agent' => 1, + }, + + { 'key' => 'cust_bill-line_item-date_description', 'section' => 'billing', 'description' => 'Text to display for "DATE_DESC" when using cust_bill-line_item-date_style DATE_DESC MONTHNAME.', |