X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpackages%2Flocation.html;h=c5ef10ee448920d21f04764f144aec2dd1de616f;hb=b4dd79750936de7aa6998cea77f9091cdbd67392;hp=db67d45b98e955259e77d9b21f57927c4a92e7b4;hpb=c6af9fc65bb5e974453a355a62506b54b2abcdca;p=freeside.git diff --git a/httemplate/view/cust_main/packages/location.html b/httemplate/view/cust_main/packages/location.html index db67d45b9..c5ef10ee4 100644 --- a/httemplate/view/cust_main/packages/location.html +++ b/httemplate/view/cust_main/packages/location.html @@ -3,7 +3,7 @@ % { % # don't show the location % } else { -% if ( !$conf->exists('cust_pkg-group_by_location') ) { +% if ( !$opt{'cust_pkg-group_by_location'} ) { % if ( $default ) {
% } @@ -12,6 +12,7 @@ 'double_space' => '   ', 'escape_function' => \&encode_entities, 'countrydefault' => $countrydefault, + 'cust_main' => $opt{'cust_main'}, ) %> @@ -19,11 +20,13 @@
<% $loc->latitude %>, <% $loc->longitude %> - <& /elements/coord-links.html, - $loc->latitude, - $loc->longitude, - $opt{'cust_main'}->name_short. ': '. $opt{'part_pkg'}->pkg, - $opt{'cust_main'}->agentnum, + <& /elements/coord-links.html, { + 'latitude' => $loc->latitude, + 'longitude' => $loc->longitude, + 'name' => $opt{'cust_main'}->name_short. + ': '. $opt{'part_pkg'}->pkg, + 'company_address' => $opt{'company_address'}, + } &> % } @@ -32,7 +35,7 @@ <% $loc->censustract %> (<% $loc->censusyear %> census) -% } elsif ( $conf->exists('cust_main-require_censustract') ) { +% } elsif ( $opt{'cust_main-require_censustract'} ) {
<% emt('Census tract unknown') %> @@ -64,7 +67,6 @@ % # preceding package. <%init> -my $conf = new FS::Conf; my %opt = @_; my $cust_pkg = $opt{'cust_pkg'}; @@ -72,7 +74,7 @@ my $countrydefault = $opt{'countrydefault'} || 'US'; my $statedefault = $opt{'statedefault'} || ($countrydefault eq 'US' ? 'CA' : ''); -my $loc = $cust_pkg->cust_location_or_main; +my $loc = $cust_pkg->cust_location_or_main('_cache'=>$opt{cust_location_cache}); # dubious--they should all have a location now my $default = $cust_pkg->locationnum == $opt{'cust_main'}->ship_locationnum;