X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=d65af669a1a35b94d344bfea653aed820cc9dd22;hb=56e92333570e8b1bb6afb7374e9624b76946c749;hp=456d117a64289b0ee8063f74c7426b2c2e0145f0;hpb=673b9a458d9138523026963df6fa3b4683e09bae;p=freeside.git diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 456d117a6..d65af669a 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -1,131 +1,167 @@ -<% - my( $cust_main ) = @_; - my $conf = new FS::Conf; -%> +% my %addr_label = ('bill' => 'Billing address', 'ship' => 'Service address'); -Billing address -<%= ntable("#cccccc") %><%= ntable("#cccccc",2) %> - - Contact name - - <%= $cust_main->last. ', '. $cust_main->first %> - -<% if ( $conf->exists('show_ss') ) { %> - SS# - <%= $cust_main->ss || ' ' %> -<% } %> - - - Company - <%= $cust_main->company %> - - - Address - <%= $cust_main->address1 %> - -<% if ( $cust_main->address2 ) { %> - -   - <%= $cust_main->address2 %> - -<% } %> - - City - <%= $cust_main->city %> - State - <%= $cust_main->state %> - Zip - <%= $cust_main->zip %> - - - Country - <%= $cust_main->country %> - -<% - 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'); -%> - - <%= $daytime_label %> - - <%= $cust_main->daytime || ' ' %> - - - - <%= $night_label %> - - <%= $cust_main->night || ' ' %> - - - - Fax - - <%= $cust_main->fax || ' ' %> - +%# Locations (possibly break this out) +% my @which = ('bill', 'ship'); +% while (@which) { +% my $this = shift @which; +% my $method = $this.'_location'; +% my $location = $cust_main->$method; +<% mt( $addr_label{$this} ) |h %> +% if ( $this eq 'ship' and +% $cust_main->bill_locationnum == $cust_main->ship_locationnum ) +% { + (<% mt('same as billing') %>) +% } + + + +% if ( $this eq 'bill' ) { +% #billing contact fields + + + +% if ( $conf->exists('show_ss') ) { + + +% } + +% if ( $conf->exists('cust-email-high-visibility') ) { + + + + +% } +% if ( $cust_main->company ) { + + + + +% } +% } # if $this eq 'bill' +% # now the actual address + + + -
<% mt('Contact name') |h %><% $cust_main->contact |h %><% mt('SS#') |h %><% $conf->exists('unmask_ss') + ? $cust_main->ss + : $cust_main->masked('ss') || ' ' %>
<% mt('Email address(es)') |h %> + <% $cust_main->invoicing_list_emailonly_scalar || $no %> +
<% mt('Company') |h %><% $cust_main->company |h %>
<% mt('Address') |h %><% $location->address1 |h %>
-<% if ( defined $cust_main->dbdef_table->column('ship_last') ) { - my $pre = $cust_main->ship_last ? 'ship_' : ''; -%> +% if ( $location->get('address2') ) { +% my $address2_label = $conf->exists('cust_main-require_address2') +% ? emt('Unit #') +% : ' '; -
-Service address -<%= ntable("#cccccc") %><%= ntable("#cccccc",2) %> - Contact name - - <%= $cust_main->get("${pre}last"). ', '. $cust_main->get("${pre}first") %> - - - - Company - <%= $cust_main->get("${pre}company") %> - - - Address - <%= $cust_main->get("${pre}address1") %> - -<% if ( $cust_main->get("${pre}address2") ) { %> - -   - <%= $cust_main->get("${pre}address2") %> - -<% } %> - - City - <%= $cust_main->get("${pre}city") %> - State - <%= $cust_main->get("${pre}state") %> - Zip - <%= $cust_main->get("${pre}zip") %> + <% $address2_label %> + <% $location->address2 |h %> + +% } + - Country - <%= $cust_main->get("${pre}country") %> + <% mt('City') |h %> + <% $location->city |h %> +% if ( $location->county ) { + <% mt('County') |h %> + <% $location->county |h %> +% } + <% mt('State') |h %> + <% state_label( $location->state, $location->country ) |h %> + <% mt('Zip') |h %> + <% $location->zip %> - <%= $daytime_label %> - - <%= $cust_main->get("${pre}daytime") || ' ' %> - + <% mt('Country') |h %> + <% code2country( $location->country ) %> - - <%= $night_label %> - - <%= $cust_main->get("${pre}night") || ' ' %> + +% if ( $location->latitude && $location->longitude ) { + <& /elements/tr-coords.html, $location->latitude, + $location->longitude, + $cust_main->name_short, + $cust_main->agentnum, + &> +% } + +% if ( $this eq 'bill' ) { +% # billing contact phone numbers +% foreach my $phone (qw(daytime night mobile)) { +% next if !$cust_main->get($phone); + + <% $phone_label{$phone} %> + + <& /elements/phonenumber.html, + $cust_main->get($phone), + callable => 1, + calling_list_exempt => $cust_main->calling_list_exempt, + &> + +% } #foreach $phone +% if ( $cust_main->get('fax') ) { + + + <% mt('Fax') |h %> + + <% $cust_main->get('fax') || ' ' %> + + + +% } +% +% if ( $conf->exists('show_stateid') ) { + - Fax - - <%= $cust_main->get("${pre}fax") || ' ' %> - - - + <% $stateid_label %> + <% $cust_main->masked('stateid') || ' ' %> + <% $stateid_state_label %> + <% $cust_main->stateid_state || ' ' %> + + +% } +% } #if $this eq 'bill' + +% if ( @which ) { +
+% } +% } #while @which +<%once> + +my %phone_label = ( + + 'daytime' => ( FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/ + ? 'Day Phone' + : FS::Msgcat::_gettext('daytime') + ), + + 'night' => ( FS::Msgcat::_gettext('night') =~ /^(night)?$/ + ? 'Night Phone' + : FS::Msgcat::_gettext('night') + ), + + 'mobile' => ( FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/ + ? 'Mobile Phone' + : FS::Msgcat::_gettext('Mobile') + ), +); + +my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/ + ? 'Driver’s License' + : FS::Msgcat::_gettext('stateid'); +my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_state)?$/ + ? 'Driver’s License State' + : FS::Msgcat::_gettext('stateid_state'); + + +<%init> + +my $cust_main = shift; +my $conf = new FS::Conf; +my @invoicing_list = $cust_main->invoicing_list; +my $no = emt('no'); + + -<% } %>