default service location is cust_main ship_ address when present! RT#4499
[freeside.git] / httemplate / view / cust_main / packages / location.html
1 <TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
2
3 % unless ( $cust_pkg->locationnum ) {
4   <I><FONT SIZE=-1>(default service address)</FONT><BR>
5 % }
6
7   <% $loc->get($prefix.'address1') |h %><BR>
8
9 % if ( $loc->get($prefix.'address2') !~ /^\s*$/ ) {
10     <% $loc->get($prefix.'address2') |h %><BR>
11 % }
12
13   <% $loc->get($prefix.'city') |h %><% $loc->get($prefix.'county') ? ' ('.$loc->get($prefix.'county').' county)' : '' |h %>,
14   <% $loc->get($prefix.'state') |h %> &nbsp; <% $loc->get($prefix.'zip') |h %><BR>
15
16 % if ( $loc->get($prefix.'country') ne $countrydefault ) {
17   <% code2country( $loc->get($prefix.'country') ) %>
18 % }
19
20   </I>
21
22 % if ( ! $cust_pkg->get('cancel')
23 %      && $FS::CurrentUser::CurrentUser->access_right('Change customer package')
24 %    )
25 % {
26   <FONT SIZE=-1>
27     (&nbsp;<%pkg_change_location_link($cust_pkg)%>&nbsp;)
28   </FONT>
29 % } 
30
31 </TD>
32 <%init>
33
34 my %opt = @_;
35
36 my $conf = new FS::Conf;
37
38 my $bgcolor        = $opt{'bgcolor'};
39 my $cust_pkg       = $opt{'cust_pkg'};
40 my $part_pkg       = $opt{'part_pkg'};
41 my $conf           = new FS::Conf;
42 my $countrydefault = $conf->config('countrydefault') || 'US';
43 my $statedefault   = $conf->config('statedefault')
44                      || ($countrydefault eq 'US' ? 'CA' : '');
45
46 my $loc = $cust_pkg->cust_location_or_main;
47 my $prefix =
48   ( $loc->table eq 'cust_main' && length($loc->ship_last) ) ? 'ship_' : ''; #doh
49
50 sub pkg_change_location_link {
51   my $cust_pkg = shift;
52   my $pkgpart = $cust_pkg->pkgpart;
53   include( '/elements/popup_link-cust_pkg.html',
54     'action'      => $p. "misc/change_pkg.cgi?locationnum=-1;pkgpart=$pkgpart;".
55                      "address1=;address2=;city=;county=;state=$statedefault;".
56                      "zip=;country=$countrydefault",
57     'label'       => 'Change&nbsp;location',
58     'actionlabel' => 'Change',
59     'cust_pkg'    => $cust_pkg,
60   );
61 }
62
63 </%init>