diff options
author | Mark Wells <mark@freeside.biz> | 2016-07-12 17:31:33 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-07-12 17:31:33 -0700 |
commit | a1c150b4ab4f726591210331dd7eb850900d741e (patch) | |
tree | 35a618a21d71c1771e81aa51e35736a1b18df6a4 /FS/FS/Template_Mixin.pm | |
parent | 7773547423c9cd0e8ac7915de58daacbec7ccf09 (diff) |
restore location labels on invoices, but remove the 'default service location' prefix from everywhere, #71474
Diffstat (limited to 'FS/FS/Template_Mixin.pm')
-rw-r--r-- | FS/FS/Template_Mixin.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index b197c6ce2..efe9769fe 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -3396,7 +3396,7 @@ sub _items_cust_bill_pkg { # location, and we're not grouping items by location already if ( $cust_pkg->locationnum != $default_locationnum and !defined($locationnum) ) { - my $loc = $cust_pkg->location_label(no_prefix => 1); + my $loc = $cust_pkg->location_label; $loc = substr($loc, 0, $maxlength). '...' if $format eq 'latex' && length($loc) > $maxlength; push @d, &{$escape_function}($loc); @@ -3506,7 +3506,7 @@ sub _items_cust_bill_pkg { # location, and we're not grouping items by location already if ( $cust_pkg->locationnum != $default_locationnum and !defined($locationnum) ) { - my $loc = $cust_pkg->location_label(no_prefix => 1); + my $loc = $cust_pkg->location_label; $loc = substr($loc, 0, $maxlength). '...' if $format eq 'latex' && length($loc) > $maxlength; push @d, &{$escape_function}($loc); |