diff options
author | levinse <levinse> | 2011-07-07 17:00:58 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-07-07 17:00:58 +0000 |
commit | 26e91d6afcd21b7113cdc6aebb37ad5acd3d5de8 (patch) | |
tree | 809ea8d43faabc41806befb142f5fc8e250c7197 /FS | |
parent | e68a94ea154f45540d7c07e2338b49a371aff57d (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 37baadd93..2d7341efd 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4564,7 +4564,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 = (); |