X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=56fbac8c6213c96e40e71347e08f9f9f8ae091a7;hb=dd65ba99bb9281571f19744154a3b03bcd3f01ab;hp=a86c35cdd76834fa143ecefcb3350d43cec7ac41;hpb=8e5fab2148c7dc492b9fffe271c3dcf8df55b01f;p=freeside.git diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index a86c35cdd..56fbac8c6 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -1,28 +1,36 @@ % my %which = ( -% '' => 'Billing', -% 'ship_' => 'Service', +% '' => emt('Billing'), +% 'ship_' => emt('Service'), % ); % foreach my $which ( '', 'ship_' ) { % my $pre = $cust_main->get("${which}last") ? $which : ''; -<% $which{$which} %> address +<% $which{$which} %> <% mt('address') |h %> <% ntable("#cccccc") %><% ntable("#cccccc",2) %> - Contact name + <% mt('Contact name') |h %> <% $cust_main->get("${pre}last"). ', '. $cust_main->get("${pre}first") |h %> % if ( $which eq '' && $conf->exists('show_ss') ) { - SS# + <% mt('SS#') |h %> <% $cust_main->masked('ss') || ' ' %> % } +% if ( $conf->exists('cust-email-high-visibility') && $which eq '') { - Company + <% mt('Email invoices') |h %> + + <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> + + +% } + + <% mt('Company') |h %> <% $cust_main->get("${pre}company") |h %> - Address + <% mt('Address') |h %> <% $cust_main->get("${pre}address1") |h %> @@ -31,8 +39,8 @@ % ( $conf->exists('cust_main-require_address2') % && ! ( $pre xor $cust_main->has_ship_address ) % ) -% ? 'Unit #' -% : ' '; +% ? emt('Unit #') +% : ' '; <% $address2_label %> @@ -42,43 +50,41 @@ % } - City + <% mt('City') |h %> <% $cust_main->get("${pre}city") |h %> % if ( $cust_main->get("${pre}county") ) { - County + <% mt('County') |h %> <% $cust_main->get("${pre}county") |h %> % } - State + <% mt('State') |h %> <% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) |h %> - Zip + <% mt('Zip') |h %> <% $cust_main->get("${pre}zip") %> - Country + <% mt('Country') |h %> <% code2country( $cust_main->get("${pre}country") ) %> <% $daytime_label %> - <% include('/elements/phonenumber.html', + <& /elements/phonenumber.html, $cust_main->get("${pre}daytime"), 'callable'=>1 - ) - %> + &> <% $night_label %> - <% include('/elements/phonenumber.html', + <& /elements/phonenumber.html, $cust_main->get("${pre}night"), 'callable'=>1 - ) - %> + &> - Fax + <% mt('Fax') |h %> <% $cust_main->get("${pre}fax") || ' ' %> @@ -96,7 +102,7 @@
% } % } -<% include('contacts_new.html', $cust_main) %> +<& contacts_new.html, $cust_main &> <%once> my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/ @@ -117,6 +123,8 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my( $cust_main ) = @_; my $conf = new FS::Conf; +my @invoicing_list = $cust_main->invoicing_list; +my $no = emt('no');