summaryrefslogtreecommitdiff
path: root/httemplate/view
diff options
context:
space:
mode:
authorivan <ivan>2009-01-19 06:39:10 +0000
committerivan <ivan>2009-01-19 06:39:10 +0000
commit2e889e2946c6afd92457e942defc9ff43fe8e8b4 (patch)
treeef3ce881a9c18ccdd52cc0a8031c26c554eeca5a /httemplate/view
parent1f50f77801a29ac4a5fd2de930a4530e85a34cdd (diff)
default service location is cust_main ship_ address when present! RT#4499
Diffstat (limited to 'httemplate/view')
-rw-r--r--httemplate/view/cust_main/packages/location.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/httemplate/view/cust_main/packages/location.html b/httemplate/view/cust_main/packages/location.html
index 6664629ab..b51616d0c 100644
--- a/httemplate/view/cust_main/packages/location.html
+++ b/httemplate/view/cust_main/packages/location.html
@@ -4,17 +4,17 @@
<I><FONT SIZE=-1>(default service address)</FONT><BR>
% }
- <% $loc->address1 |h %><BR>
+ <% $loc->get($prefix.'address1') |h %><BR>
-% if ( $loc->address2 !~ /^\s*$/ ) {
- <% $loc->address2 |h %><BR>
+% if ( $loc->get($prefix.'address2') !~ /^\s*$/ ) {
+ <% $loc->get($prefix.'address2') |h %><BR>
% }
- <% $loc->city |h %><% $loc->county ? ' ('.$loc->county.' county)' : '' |h %>,
- <% $loc->state |h %> &nbsp; <% $loc->zip |h %><BR>
+ <% $loc->get($prefix.'city') |h %><% $loc->get($prefix.'county') ? ' ('.$loc->get($prefix.'county').' county)' : '' |h %>,
+ <% $loc->get($prefix.'state') |h %> &nbsp; <% $loc->get($prefix.'zip') |h %><BR>
-% if ( $loc->country ne $countrydefault ) {
- <% code2country( $loc->country ) %>
+% if ( $loc->get($prefix.'country') ne $countrydefault ) {
+ <% code2country( $loc->get($prefix.'country') ) %>
% }
</I>
@@ -44,6 +44,8 @@ my $statedefault = $conf->config('statedefault')
|| ($countrydefault eq 'US' ? 'CA' : '');
my $loc = $cust_pkg->cust_location_or_main;
+my $prefix =
+ ( $loc->table eq 'cust_main' && length($loc->ship_last) ) ? 'ship_' : ''; #doh
sub pkg_change_location_link {
my $cust_pkg = shift;