X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=0b754d097070746d436c5217ee5dfb01f98d1e6b;hb=2238711675eefa60cd2feb47c8d3e43d3e6f1860;hp=22594c5e271ba217f2d86181eb12faf179ceba22;hpb=51bf0e9b404cd6e4ae84435230447619269f77c0;p=freeside.git diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 22594c5e2..0b754d097 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -1,16 +1,16 @@ % my %which = ( -% '' => 'Billing', -% 'ship_' => 'Service', +% '' => mt('Billing'), +% 'ship_' => mt('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") %> + <% $cust_main->get("${pre}last"). ', '. $cust_main->get("${pre}first") |h %> % if ( $which eq '' && $conf->exists('show_ss') ) { SS# @@ -18,59 +18,65 @@ % } - Company - <% $cust_main->get("${pre}company") %> + <% mt('Company') |h %> + <% $cust_main->get("${pre}company") |h %> - Address - <% $cust_main->get("${pre}address1") %> + <% mt('Address') |h %> + <% $cust_main->get("${pre}address1") |h %> + % if ( $cust_main->get("${pre}address2") ) { +% my $address2_label = +% ( $conf->exists('cust_main-require_address2') +% && ! ( $pre xor $cust_main->has_ship_address ) +% ) +% ? mt('Unit #') +% : ' '; + + + <% $address2_label %> + <% $cust_main->get("${pre}address2") |h %> + - -   - <% $cust_main->get("${pre}address2") %> - % } - City - <% $cust_main->get("${pre}city") %> + <% mt('City') |h %> + <% $cust_main->get("${pre}city") |h %> % if ( $cust_main->get("${pre}county") ) { - County - <% $cust_main->get("${pre}county") %> + <% mt('County') |h %> + <% $cust_main->get("${pre}county") |h %> % } - State - <% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) %> - Zip + <% mt('State') |h %> + <% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) |h %> + <% 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") || ' ' %> @@ -88,7 +94,7 @@
% } % } - +<& contacts_new.html, $cust_main &> <%once> my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/