X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Fcontact.html;h=57490b962526568b6f82f911197da2065ba5db22;hb=9b4209f91ad9e3c4cef7deebfb0180f6faf1d0dc;hp=feb61db8d097e2c3b4b938838d7f73704d720c6d;hpb=63a268637b2d51a8766412617724b9436439deb6;p=freeside.git diff --git a/httemplate/edit/cust_main/contact.html b/httemplate/edit/cust_main/contact.html index feb61db8d..57490b962 100644 --- a/httemplate/edit/cust_main/contact.html +++ b/httemplate/edit/cust_main/contact.html @@ -1,62 +1,48 @@ -<% &ntable("#cccccc") %> + - - + % if ( $conf->exists('show_ss') && !$pre ) { - + % } elsif ( !$pre ) { % } - - - - - - +% if ( $conf->exists('cust-email-high-visibility') && !$pre ) { + + + + +% } -<% include('/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'}, - ) -%> +% unless ( $conf->exists('cust-edit-alt-field-order') ) { #standard order - - - - + <& company &> + <& location &> + <& phones &> + <& fax &> - - - - +% } else { #alternate field order - - - - + <& phones &> + <& location &> + <& fax &> + <& company &> + +% } % if ( $conf->exists('show_stateid') && !$pre ) { @@ -64,15 +50,14 @@ - % } elsif ( !$pre ) { @@ -82,20 +67,90 @@ % }
<%$r%>Contact name
(last, first)
- <%$style%>> , - <%$style%>> + <%$r%><% mt('Contact name (last, first)') |h %> + <%$style%>> , + <%$style%>> SS#<% mt('SS#') |h %>
Company - <%$style%>> -
+ <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) + ? $r : '' %>Email address(es) + + +
<% $daytime_label %> - <%$style%>> -
<% $night_label %> - <%$style%>> -
Fax - <%$style%>> -
<% $stateid_label %> <%$style%>> <% $stateid_state_label %><% include('/elements/select-state.html', + <& /elements/select-state.html, 'state' => $cust_main->stateid_state, 'country' => $cust_main->country, 'prefix' => 'stateid_', 'onchange' => $onchange, 'disabled' => $disabled, 'style' => \@style, - ) - %> + &>
-<%$r%>required fields
+<%$r%><% mt('required fields') |h %>
+ +<%def company> +% my $display = ($cust_main->residential_commercial eq 'Commercial') +% ? '' : 'none'; + + <% mt('Company') |h %> + + <%$style%>> + + + + +<%def location> + <& /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'}, + &> + + +<%def phones> + + <% mt('Phones') %> + + + + + + + + + + +
+ <%$style%>> +
<% $daytime_label %> +
  + <%$style%>> +
<% $night_label %> +
  + <%$style%>> +
<% $mobile_label %> +
+ + + + +<%def fax> + + <% mt('Fax') |h %> + + <%$style%>> + + + + +<%once> + +my $r = qq!* !; + + +<%shared> + +my( %opt, $cust_main, $pre, $onchange, $disabled, @style, $style, + $daytime_label, $night_label, $mobile_label, + ); + <%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'} } : () ); +%opt = @_; +$cust_main = $opt{'cust_main'}; +$pre = $opt{'pre'}; +$onchange = $opt{'onchange'}; +$disabled = $opt{'disabled'}; +@style = ( $opt{'style'} ? @{ $opt{'style'} } : () ); -#push @style, 'background-color: #dddddd' if $disabled; -my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; +$style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; my $conf = new FS::Conf; @@ -123,21 +178,16 @@ if ( $conf->exists('cust_main-require_censustract') ) { $opt{censustract} ||= $cust_main->censustract; } -#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 $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'; +$daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/ + ? 'Day' + : FS::Msgcat::_gettext('daytime'); +$night_label = FS::Msgcat::_gettext('night') =~/^(night)?$/ + ? 'Night' + : FS::Msgcat::_gettext('night') || 'Night'; +$mobile_label = FS::Msgcat::_gettext('mobile') =~/^(mobile)?$/ + ? 'Mobile' + : FS::Msgcat::_gettext('mobile') || 'Mobile'; + my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/ ? 'Driver’s License' : FS::Msgcat::_gettext('stateid') || 'Driver’s License'; @@ -145,6 +195,8 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st ? 'Driver’s License State' : FS::Msgcat::_gettext('stateid_state') || 'Driver’s License State'; -my $r = qq!* !; +my @invoicing_list = $cust_main->invoicing_list; + +my $agentnum = $cust_main->agentnum if $cust_main->custnum;