From: Ivan Kohler Date: Thu, 27 Dec 2012 00:13:09 +0000 (-0800) Subject: don't set %item_dates for custom invoice formats if package option disable_line_item_... X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=dbca6f3dd99071e138ca7e5ee2859d41c00506ce;p=freeside.git don't set %item_dates for custom invoice formats if package option disable_line_item_date_ranges is on, RT#19907 --- diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 1d7dca546..e8fb61d20 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4997,7 +4997,9 @@ sub _items_cust_bill_pkg { # start/end dates for invoice formats that do nonstandard # things with them - my %item_dates = map { $_ => $cust_bill_pkg->$_ } ('sdate', 'edate'); + my %item_dates = (); + %item_dates = map { $_ => $cust_bill_pkg->$_ } ('sdate', 'edate') + unless $cust_pkg->part_pkg->option('disable_line_item_date_ranges',1); if ( (!$type || $type eq 'S') && ( $cust_bill_pkg->setup != 0