X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Fcontact.html;h=51c0960caf0f060fe88d39f074186852a6b505cc;hb=75e11f1d1a5ced24496b5732e290f7762403feb8;hp=2d37dc89530aa41ad5afc8c2d40c431a2d33be5a;hpb=4e77f6927631e226e13da84082be66867b71330f;p=freeside.git diff --git a/httemplate/edit/cust_main/contact.html b/httemplate/edit/cust_main/contact.html index 2d37dc895..51c0960ca 100644 --- a/httemplate/edit/cust_main/contact.html +++ b/httemplate/edit/cust_main/contact.html @@ -1,14 +1,14 @@ <% &ntable("#cccccc") %> - <%$r%>Contact name
(last, first) - - > , - > + <%$r%><% mt('Contact name (last, first)') |h %> + + <%$style%>> , + <%$style%>> % if ( $conf->exists('show_ss') && !$pre ) { - SS# + <% mt('SS#') |h %> % } elsif ( !$pre ) { @@ -18,95 +18,129 @@ +% if ( $conf->exists('cust-email-high-visibility') && !$pre ) { + + + <% $conf->exists('cust_main-require_invoicing_list_email') ? $r : '' %>Email address(es) + + + + + +% } + +% unless ( $conf->exists('cust-edit-alt-field-order') ) { - Company + <% mt('Company') |h %> - > + <%$style%>> +<& /elements/location.html, + 'prefix' => $pre, + 'object' => $cust_main, + 'onchange' => $onchange, + 'disabled' => $disabled, + 'style' => \@style, + 'same_checked' => $opt{'same_checked'}, + 'geocode' => $opt{'geocode'}, + 'censustract' => $opt{'censustract'}, +&> + - <%$r%>Address - - > + <% $daytime_label %> + + <%$style%>> -% my $address2_label_style = -% ( $disabled -% || ! $conf->exists('cust_main-require_address2') -% || ( !$pre && !$opt{'same_checked'} ) -% ) -% ? 'visibility:hidden' -% : ''; - - * Unit # - - > + <% $night_label %> + + <%$style%>> - <%$r%>City - - > - - ><%$r%>County - - <% include('select-county.html', %select_hash ) %> - - <%$r%>State - - <% include('select-state.html', %select_hash ) %> - - <%$r%>Zip - - > + <% $mobile_label %> + + <%$style%>> - <%$r%>Country - <% include('select-country.html', %select_hash ) %> -% if ( !$pre ) { - -% } - + <% mt('Fax') |h %> + + <%$style%>> + +% } else { + <% $daytime_label %> - > + <%$style%>> <% $night_label %> - > + <%$style%>> - Fax + <% $mobile_label %> - > + <%$style%>> +<& /elements/location.html, + 'prefix' => $pre, + 'object' => $cust_main, + 'onchange' => $onchange, + 'disabled' => $disabled, + 'style' => \@style, + 'same_checked' => $opt{'same_checked'}, + 'geocode' => $opt{'geocode'}, + 'censustract' => $opt{'censustract'}, +&> + + + <% mt('Fax') |h %> + + <%$style%>> + + + + + <% mt('Company') |h %> + + <%$style%>> + + + +% } + % if ( $conf->exists('show_stateid') && !$pre ) { <% $stateid_label %> - > + <%$style%>> <% $stateid_state_label %> - <% include('select-state.html', 'state' => $cust_main->stateid_state, - 'country' => $cust_main->country, - 'prefix' => 'stateid_', - 'onchange' => $onchange, - 'disabled' => $disabled) %> + <& /elements/select-state.html, + 'state' => $cust_main->stateid_state, + 'country' => $cust_main->country, + 'prefix' => 'stateid_', + 'onchange' => $onchange, + 'disabled' => $disabled, + 'style' => \@style, + &> + % } elsif ( !$pre ) { @@ -115,16 +149,18 @@ % } -<%$r%>required fields
+<%$r%><% mt('required fields') |h %>
<%init> -#my( $cust_main, $pre, $onchange, $disabled, %opt ) = @_; my %opt = @_; my $cust_main = $opt{'cust_main'}; my $pre = $opt{'pre'}; my $onchange = $opt{'onchange'}; my $disabled = $opt{'disabled'}; +my @style = ( $opt{'style'} ? @{ $opt{'style'} } : () ); + +my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; my $conf = new FS::Conf; @@ -146,35 +182,22 @@ $cust_main->set($pre.'state', $statedefault ) $cust_main->set('stateid_state', $cust_main->state ) unless $pre || $cust_main->get('stateid_state'); -#my($county_html, $state_html, $country_html) = -# FS::cust_main_county::regionselector( $cust_main->get($pre.'county'), -# $cust_main->get($pre.'state'), -# $cust_main->get($pre.'country'), -# $pre, -# $onchange, -# $disabled, -# ); - -my %select_hash = ( - 'county' => $cust_main->get($pre.'county'), - 'state' => $cust_main->get($pre.'state'), - 'country' => $cust_main->get($pre.'country'), - 'prefix' => $pre, - 'onchange' => $onchange, - 'disabled' => $disabled, -); - -my @counties = counties( $cust_main->get($pre.'state'), - $cust_main->get($pre.'country'), - ); -my $county_style = scalar(@counties) > 1 ? '' : 'STYLE="visibility:hidden"'; +$opt{geocode} ||= $cust_main->get('geocode'); + +if ( $conf->exists('cust_main-require_censustract') ) { + $opt{censustract} ||= $cust_main->censustract; +} my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/ - ? 'Day Phone' - : FS::Msgcat::_gettext('daytime'); -my $night_label = FS::Msgcat::_gettext('night') =~/^(night)?$/ - ? 'Night Phone' - : FS::Msgcat::_gettext('night') || 'Night Phone'; + ? 'Day Phone' + : FS::Msgcat::_gettext('daytime'); +my $night_label = FS::Msgcat::_gettext('night') =~/^(night)?$/ + ? 'Night Phone' + : FS::Msgcat::_gettext('night') || 'Night Phone'; +my $mobile_label = FS::Msgcat::_gettext('mobile') =~/^(mobile)?$/ + ? 'Mobile Phone' + : FS::Msgcat::_gettext('mobile') || 'Mobile Phone'; + my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/ ? 'Driver’s License' : FS::Msgcat::_gettext('stateid') || 'Driver’s License'; @@ -184,4 +207,6 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my $r = qq!* !; +my @invoicing_list = $cust_main->invoicing_list; +