From: ivan Date: Sun, 31 Oct 2010 21:48:57 +0000 (+0000) Subject: fix long package locations showing up as line item on typeset invoices, RT#10093 X-Git-Tag: TORRUS_1_0_9~164 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=387c96b0d8f224f3ade27bed9348f37b432bbb8a fix long package locations showing up as line item on typeset invoices, RT#10093 --- diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 0cf052682..a7eb9f64a 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4098,7 +4098,7 @@ sub _items_cust_bill_pkg { $cust_pkg->h_labels_short($self->_date); if ( $multilocation ) { my $loc = $cust_pkg->location_label; - $loc = substr($desc, 0, 50). '...' + $loc = substr($loc, 0, 50). '...' if $format eq 'latex' && length($loc) > 50; push @d, &{$escape_function}($loc); } @@ -4158,7 +4158,7 @@ sub _items_cust_bill_pkg { ; if ( $multilocation ) { my $loc = $cust_pkg->location_label; - $loc = substr($desc, 0, 50). '...' + $loc = substr($loc, 0, 50). '...' if $format eq 'latex' && length($loc) > 50; push @d, &{$escape_function}($loc); }