X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Flocation.html;h=48c6159bbf260ce9b78e10e3cd5d4c166dd323c6;hb=b431ece7b4a71aa5771f44393da582692f668817;hp=e93553e2af869fb2107f754ecc8598f6d29de4a2;hpb=080406e219b6c63d02bfda8abea33020c4265db1;p=freeside.git diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html index e93553e2a..48c6159bb 100644 --- a/httemplate/elements/location.html +++ b/httemplate/elements/location.html @@ -20,14 +20,14 @@ Example: % if ( $opt{'alt_format'} ) { - <<%$th%> ALIGN="right">Location kind> + <<%$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')) @@ -40,7 +40,7 @@ Example: % } - <<%$th%> ALIGN="right"><%$r%><% $opt{'address1_label'} || 'Address' %>> + <<%$th%> ALIGN="right"><%$r%><% $opt{'address1_label'} || emt('Address') %>> - <<%$th%> ALIGN="right">Unit type and #> + <<%$th%> ALIGN="right">Unit type and #> % my $location_type = scalar($cgi->param('location_type')) @@ -98,7 +98,7 @@ Example: 'field' => 'location_type', 'id' => 'location_type', 'disabled' => $disabled, - 'style' => \@style, + #'style' => \@style, 'options' => [ keys %location_types ], 'labels' => \%location_types, 'curr_value' => $location_type, @@ -136,15 +136,9 @@ 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 %> @@ -154,15 +148,15 @@ Example: - <<%$th%> ALIGN="right"><%$r%>City> + <<%$th%> ALIGN="right"><%$r%><% mt('City') |h %>> <% 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" 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 %>> - <<%$th%> ALIGN="right"><%$r%>Country> + <<%$th%> ALIGN="right"><%$r%><% mt('Country') |h %>> <% include('/elements/select-country.html', %select_hash ) %> @@ -219,6 +213,8 @@ $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; @@ -256,7 +252,7 @@ my %select_hash = ( 'prefix' => $pre, 'onchange' => $onchange, 'disabled' => $disabled, - 'style' => \@style, + #'style' => \@style, ); my $th = $opt{'no_bold'} ? 'TD' : 'TH';