X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=68e3b17adb7501268242a4498bade660e1b6287b;hb=d5cdad7fae9c5e45701a7e83abeb903d31b7983f;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..68e3b17ad 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -1,131 +1,155 @@ -<% - my( $cust_main ) = @_; - my $conf = new FS::Conf; -%> +% my %which = ( +% '' => emt('Billing'), +% 'ship_' => emt('Service'), +% ); +% foreach my $which ( '', 'ship_' ) { +% my $pre = $cust_main->get("${which}last") ? $which : ''; -Billing address -<%= ntable("#cccccc") %><%= ntable("#cccccc",2) %> +<% $which{$which} %> <% mt('address') |h %> +<% ntable("#cccccc") %><% ntable("#cccccc",2) %> - Contact name - - <%= $cust_main->last. ', '. $cust_main->first %> + <% mt('Contact name') |h %> + + <% $cust_main->get("${pre}last"). ', '. $cust_main->get("${pre}first") |h %> -<% 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 %> +% if ( $which eq '' && $conf->exists('show_ss') ) { + <% mt('SS#') |h %> + <% $cust_main->masked('ss') || ' ' %> +% } -<% - 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'); -%> +% if ( $conf->exists('cust-email-high-visibility') && $which eq '') { - <%= $daytime_label %> - - <%= $cust_main->daytime || ' ' %> + <% mt('Email invoices') |h %> + + <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> +% } - <%= $night_label %> - - <%= $cust_main->night || ' ' %> - + <% mt('Company') |h %> + <% $cust_main->get("${pre}company") |h %> - Fax - - <%= $cust_main->fax || ' ' %> - + <% mt('Address') |h %> + <% $cust_main->get("${pre}address1") |h %> - -<% if ( defined $cust_main->dbdef_table->column('ship_last') ) { - my $pre = $cust_main->ship_last ? 'ship_' : ''; -%> +% if ( $cust_main->get("${pre}address2") ) { +% my $address2_label = +% ( $conf->exists('cust_main-require_address2') +% && ! ( $pre xor $cust_main->has_ship_address ) +% ) +% ? emt('Unit #') +% : ' '; + + + <% $address2_label %> + <% $cust_main->get("${pre}address2") |h %> + + +% } -
-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") %> + <% mt('City') |h %> + <% $cust_main->get("${pre}city") |h %> +% if ( $cust_main->get("${pre}county") ) { + <% mt('County') |h %> + <% $cust_main->get("${pre}county") |h %> +% } + <% mt('State') |h %> + <% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) |h %> + <% mt('Zip') |h %> + <% $cust_main->get("${pre}zip") %> -<% } %> - City - <%= $cust_main->get("${pre}city") %> - State - <%= $cust_main->get("${pre}state") %> - Zip - <%= $cust_main->get("${pre}zip") %> + <% mt('Country') |h %> + <% code2country( $cust_main->get("${pre}country") ) %> + +% if ( $cust_main->get($pre.'latitude') && $cust_main->get($pre.'longitude') ) { + <& /elements/tr-coords.html, $cust_main->get($pre.'latitude'), + $cust_main->get($pre.'longitude'), + $cust_main->name_short, + $cust_main->agentnum, + &> +% } + - Country - <%= $cust_main->get("${pre}country") %> + <% $daytime_label %> + + <& /elements/phonenumber.html, + $cust_main->get("${pre}daytime"), + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, + &> + - <%= $daytime_label %> - - <%= $cust_main->get("${pre}daytime") || ' ' %> + <% $night_label %> + + <& /elements/phonenumber.html, + $cust_main->get("${pre}night"), + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, + &> - <%= $night_label %> - - <%= $cust_main->get("${pre}night") || ' ' %> + <% $mobile_label %> + + <& /elements/phonenumber.html, + $cust_main->get("${pre}mobile"), + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, + &> - Fax - - <%= $cust_main->get("${pre}fax") || ' ' %> + <% mt('Fax') |h %> + + <% $cust_main->get("${pre}fax") || ' ' %> +% if ( $which eq '' && $conf->exists('show_stateid') ) { + + <% $stateid_label %> + <% $cust_main->masked('stateid') || ' ' %> + <% $stateid_state_label %> + <% $cust_main->stateid_state || ' ' %> + +% } +% if ( $which ne 'ship_' ) { +
+% } +% } +<& contacts_new.html, $cust_main &> +<%once> + +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'); +my $mobile_label = 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 ) = @_; +my $conf = new FS::Conf; +my @invoicing_list = $cust_main->invoicing_list; +my $no = emt('no'); + + -<% } %>