X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Flocation.html;h=5cdc424a74d87cbb88605e507970a2eae84284dd;hb=5556814b7ff65b0a4837390be9331e1841189427;hp=5304c37d60992073efe03907b4d3b5e1c11d607f;hpb=37314c736907de968d3f61dd5dc93aa61c6ca161;p=freeside.git diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html index 5304c37d6..5cdc424a7 100644 --- a/httemplate/elements/location.html +++ b/httemplate/elements/location.html @@ -3,16 +3,18 @@ Example: include( '/elements/location.html', - 'object' => $cust_main, # or $cust_location - 'prefix' => $pre, #only for cust_main objects + 'object' => $cust_location + 'prefix' => $pre, # prefixed to form field names 'onchange' => $javascript, - 'disabled' => $disabled, - 'same_checked' => $same_checked, 'geocode' => $geocode, #passed through 'censustract' => $censustract, #passed through 'no_asterisks' => 0, #set true to disable the red asterisks next #to required fields 'address1_label' => 'Address', #label for address + 'enable_coords' => 1, #show latitude/longitude fields + 'enable_district' => 1, #show tax district field + 'enable_censustract' => 1, #show censustract field + ) @@ -20,17 +22,18 @@ Example: % if ( $opt{'alt_format'} ) { - <<%$th%> ALIGN="right">Locatiopn type> + <<%$th%> ALIGN="right">Location kind> <% include('/elements/select.html', 'cgi' => $cgi, 'field' => 'location_kind', + 'id' => 'location_kind', 'disabled' => $disabled, - 'style' => $style, + #'style' => \@style, 'options' => \@location_kind_options, 'labels' => $location_kind_labels, 'curr_value' => scalar($cgi->param('location_kind')) - || $object->get($pre.'location_kind'), + || $object->get('location_kind'), ) %> @@ -38,13 +41,40 @@ Example: % } +% if ( $label_prefix eq '_location' ) { + + + <% $opt{'locationname_label'} || emt('Location ID') %> + + + <% $style %> + > + + + +% } else { + + + +% } + - <<%$th%> ALIGN="right"><%$r%><% $opt{'address1_label'} || 'Address' %>> + <<%$th%> STYLE="width:16ex" ALIGN="right"><%$r%><% $opt{'address1_label'} || emt('Address') %>> @@ -61,7 +91,7 @@ Example: @@ -74,15 +104,15 @@ Example: - <<%$th%> ALIGN="right">Unit Type and #> + <<%$th%> ALIGN="right">Unit type and #> % my $location_type = scalar($cgi->param('location_type')) -% || $object->get($pre.'location_type'); +% || $object->get('location_type'); % #my $location_number = scalar($cgi->param('location_number')) % # || $object->get($pre.'location_number'); % @@ -95,8 +125,9 @@ Example: <% include('/elements/select.html', 'cgi' => $cgi, 'field' => 'location_type', + 'id' => 'location_type', 'disabled' => $disabled, - 'style' => $style, + #'style' => \@style, 'options' => [ keys %location_types ], 'labels' => \%location_types, 'curr_value' => $location_type, @@ -126,23 +157,17 @@ Example: % } <% $style %> > -% if ( $object->get($pre.'address2') ) { - -% #XXX try to parse first -% if ( 0 ) { -% } else { - Can't parse unit type and number from <% $object->get($pre.'address2') |h %> -% } - -% } +% #XXX i don't work so well when the dropdown is changed :/ i probably need to be triggered by "default service address" +% $alt_err =~ s/(ship_)?address2/''.encode_entities($object->get($1.'address2')).'<\/B>'/e; + <% $alt_err %> @@ -152,21 +177,21 @@ Example: - <<%$th%> ALIGN="right"><%$r%>City> - <% include('/elements/city.html', %select_hash) %> - <<%$th%> ALIGN="right" ID="<%$pre%>countylabel" <%$county_style%>><%$r%>County> - <% include('/elements/select-county.html', %select_hash ) %> - <<%$th%> ALIGN="right" WIDTH="1"><%$r%>State> + <<%$th%> ALIGN="right"><%$r%><% mt('City') |h %>> + <% include('/elements/city.html', %select_hash, 'text_style' => \@style ) %> + <<%$th%> ALIGN="right" WIDTH="1" ID="<%$pre%>countylabel" <%$county_style%>><%$r%>County> + <% include('/elements/select-county.html', %select_hash ) %> + <<%$th%> ALIGN="right" WIDTH="1"><%$r%><% mt('State') |h %>> <% include('/elements/select-state.html', %select_hash ) %> - <<%$th%>><%$r%>Zip> + <<%$th%> ALIGN="right" WIDTH="1"><%$r%><% mt('Zip') |h %>> <% $style %> @@ -175,23 +200,114 @@ Example: - <<%$th%> ALIGN="right"><%$r%>Country> + <<%$th%> ALIGN="right"><%$r%><% mt('Country') |h %>> <% include('/elements/select-country.html', %select_hash ) %> -% if ( !$pre ) { - +% if ( $opt{enable_coords} ) { + + <% mt('Latitude') |h %> + + + <% $style %> + > + <% mt('Longitude') |h %> + + <% $style %> + > + + % } else { -% if ( $pre eq 'ship_' && $conf->exists('cust_main-require_censustract') ) { - <<%$th%> ALIGN="right">Census tract
(automatic)> - - - - -% } else { - -% } -% } +% foreach (qw(latitude longitude)) { + +% } +% } + + + + + +% if ( $opt{enable_censustract} ) { + + Census tract + + + <% '(automatic)' %> + + +% } +% if ( $opt{enable_district} and $conf->config('tax_district_method') ) { + + Tax district + + + <% '(automatic)' %> + + +% } else { + +% } + +%# For address standardization: +%# keep a clean copy of the address so we know if we need +%# to re-standardize +% foreach (qw(address1 city state country zip latitude +% longitude censustract district addr_clean) ) { + +% } +%# Placeholders + + + + <%init> @@ -202,20 +318,20 @@ my $object = $opt{'object'}; my $onchange = $opt{'onchange'}; my $disabled = $opt{'disabled'}; -my $conf = new FS::Conf; - my $r = $opt{'no_asterisks'} ? '' : qq!* !; -#false laziness with ship state +my $conf = new FS::Conf; my $countrydefault = $conf->config('countrydefault') || 'US'; -$object->set($pre.'country', $countrydefault ) - unless $object->get($pre.'country'); +my $statedefault = $conf->config('statedefault') + || ($countrydefault eq 'US' ? 'CA' : ''); +my $label_prefix = $conf->config('cust_location-label_prefix'); + +$object ||= FS::cust_location->new({ + 'country' => $countrydefault, + 'state' => $statedefault, +}); -my $statedefault = $conf->config('statedefault') - || ($countrydefault eq 'US' ? 'CA' : ''); -$object->set($pre.'state', $statedefault ) - unless $object->get($pre.'state') - || $object->get($pre.'country') ne $countrydefault; +my $alt_err = ($opt{'alt_format'} && !$disabled) ? $object->alternize : ''; my @style = (); push @style, 'background-color: #dddddd' if $disabled; @@ -226,8 +342,8 @@ push @address2_label_style, 'visibility:hidden' || ! $conf->exists('cust_main-require_address2') || ( !$pre && !$opt{'same_checked'} ); -my @counties = counties( $object->get($pre.'state'), - $object->get($pre.'country'), +my @counties = counties( $object->get('state'), + $object->get('country'), ); my @county_style = (); push @county_style, 'display:none' # 'visibility:hidden' @@ -247,14 +363,14 @@ my $county_style = : ''; my %select_hash = ( - 'city' => $object->get($pre.'city'), - 'county' => $object->get($pre.'county'), - 'state' => $object->get($pre.'state'), - 'country' => $object->get($pre.'country'), + 'city' => $object->get('city'), + 'county' => $object->get('county'), + 'state' => $object->get('state'), + 'country' => $object->get('country'), 'prefix' => $pre, 'onchange' => $onchange, 'disabled' => $disabled, - 'style' => \@style, + #'style' => \@style, ); my $th = $opt{'no_bold'} ? 'TD' : 'TH';