diff options
author | levinse <levinse> | 2011-07-07 17:00:56 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-07-07 17:00:56 +0000 |
commit | 3f8dd846e92d44fc461d91d5fd5e012a770370d1 (patch) | |
tree | dbd5046c7639ab467df9d62358bb3ff1b3644cd3 /FS | |
parent | c256a84f9f9e32f6951af61da0c522a75723ef97 (diff) |
add a per-package disable_line_item_date_ranges option, RT13200
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 15543a9ea..082c92d03 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4679,7 +4679,8 @@ sub _items_cust_bill_pkg { $description .= " (" . time2str($date_format, $cust_bill_pkg->sdate). " - ". time2str($date_format, $cust_bill_pkg->edate). ")" - unless $conf->exists('disable_line_item_date_ranges'); + unless $conf->exists('disable_line_item_date_ranges') + || $cust_pkg->part_pkg->option('disable_line_item_date_ranges',1); my @d = (); |