<%doc> Example: include('/elements/tr-select-cust_location.html', 'cgi' => $cgi, 'cust_main' => $cust_main, #or 'prospect_main' => $prospect_main, #optional 'empty_label' => '(default service address)', ) <% include('/elements/xmlhttp.html', 'url' => $p.'misc/location.cgi', 'subs' => [ 'get_location' ], ) %> <<%$th%> ALIGN="right"><% $opt{'label'} || 'Service location' %>> <% include('/elements/location.html', 'object' => $cust_location, #'onchange' ? probably not 'disabled' => $disabled, 'no_asterisks' => 1, 'no_bold' => $opt{'no_bold'}, 'alt_format' => $opt{'alt_format'}, ) %> <%init> my $conf = new FS::Conf; my $countrydefault = $conf->config('countrydefault') || 'US'; my $statedefault = $conf->config('statedefault') || ($countrydefault eq 'US' ? 'CA' : ''); my %opt = @_; my $cgi = $opt{'cgi'}; my $cust_pkg = $opt{'cust_pkg'}; my $cust_main = $opt{'cust_main'}; my $prospect_main = $opt{'prospect_main'}; my $prefix = ($cust_main && length($cust_main->ship_last)) ? 'ship_' : ''; my $locationnum; if ( length($opt{'curr_value'}) ) { $locationnum = $opt{'curr_value'}; } else { $cgi->param('locationnum') =~ /^(\-?\d*)$/ or die "illegal locationnum"; $locationnum = $1; } #probably could use explicit controls # (cust_main locations not editable for tax reasons) my $editable = $cust_main ? 0 : 1; #could use explicit control my $addnew = $cust_main ? 1 : ( $locationnum>0 ? 0 : 1 ); my @location_fields = qw( address1 address2 city county state zip country ); if ( $opt{'alt_format'} ) { push @location_fields, qw( location_type location_number location_kind ); } my $cust_location; if ( $locationnum && $locationnum > 0 ) { $cust_location = qsearchs('cust_location', { 'locationnum' => $locationnum } ) or die "unknown locationnum"; } else { $cust_location = new FS::cust_location; if ( $locationnum == -1 ) { $cust_location->$_( $cgi->param($_) ) foreach @location_fields; } elsif ( $cust_pkg && $cust_pkg->locationnum ) { my $pkg_location = $cust_pkg->cust_location; $cust_location->$_( $pkg_location->$_ ) foreach @location_fields; $opt{'empty_label'} ||= 'package address: '.$pkg_location->line; } elsif ( $cust_main ) { $cust_location->$_( $cust_main->get($prefix.$_) ) foreach @location_fields; } } my $location_sort = sub { $a->country cmp $b->country or lc($a->city) cmp lc($b->city) or lc($a->address1) cmp lc($b->address1) or lc($a->address2) cmp lc($b->address2) }; my $disabled = ( $locationnum < 0 || ($editable && $locationnum) ) ? '' : 'DISABLED'; my $th = $opt{'no_bold'} ? 'TD' : 'TH';