41155cbae5f85060df4f503da1758cc3f8ea2aff
[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->location_label( 'join_string'     => '<BR>',
8                            'double_space'    => ' &nbsp; ',
9                            'escape_function' => \&encode_entities,
10                            'countrydefault'  => $countrydefault,
11                          )
12   %>
13
14 % unless ( $cust_pkg->locationnum ) {
15   </I>
16 % }
17
18 % if ( ! $cust_pkg->get('cancel')
19 %      && $FS::CurrentUser::CurrentUser->access_right('Change customer package')
20 %    )
21 % {
22   <FONT SIZE=-1>
23     (&nbsp;<%pkg_change_location_link($cust_pkg)%>&nbsp;)
24   </FONT>
25 % } 
26
27 </TD>
28 <%init>
29
30 my %opt = @_;
31
32 my $bgcolor        = $opt{'bgcolor'};
33 my $cust_pkg       = $opt{'cust_pkg'};
34 my $countrydefault = $opt{'countrydefault'} || 'US';
35 my $statedefault   = $opt{'statedefault'}
36                      || ($countrydefault eq 'US' ? 'CA' : '');
37
38 my $loc = $cust_pkg->cust_location_or_main;
39
40 sub pkg_change_location_link {
41   my $cust_pkg = shift;
42   my $pkgpart = $cust_pkg->pkgpart;
43   include( '/elements/popup_link-cust_pkg.html',
44     'action'      => $p. "misc/change_pkg.cgi?locationnum=-1;pkgpart=$pkgpart;".
45                      "address1=;address2=;city=;county=;state=$statedefault;".
46                      "zip=;country=$countrydefault",
47     'label'       => 'Change&nbsp;location',
48     'actionlabel' => 'Change',
49     'cust_pkg'    => $cust_pkg,
50   );
51 }
52
53 </%init>