X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=1660c1c2272a649ce8783c6864287d0a2160b299;hp=e3d5d63cbeaa2983dbfa7dd6edd0ed939d720628;hb=ae58eda132b5a89ce251dbdf13822dee2f3bc92f;hpb=9aee669886202be7035e6c6049fc71bc99dd3013 diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index e3d5d63cb..1660c1c22 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -10,7 +10,7 @@ % if ( $this eq 'ship' and % $cust_main->bill_locationnum == $cust_main->ship_locationnum ) % { - (<% mt('same as billing') %>) + (<% emt('same as billing') %>) % } % if ( @@ -43,15 +43,36 @@ $cust_main->spouse_last, $cust_main->spouse_first) %> -% } -% if ( $conf->exists('cust-email-high-visibility') ) { +% } +% +% # invoicing email +% if ( scalar(@invoicing_list) == 1 ) { # typical individual user; show here - <% mt('Email address(es)') |h %> - - <% $cust_main->invoicing_list_emailonly_scalar || $no %> + <% mt('Email address') |h %> + + <% $invoicing_list[0] %> -% } +% } elsif ( scalar(@invoicing_list) > 1 ) { +% # business customer with a contact list +% # show nothing here +% +% } else { # there is no invoice email for them + + <% mt('Email address') |h %> +% if ( !$cust_main->postal_invoice or +% $conf->exists('cust_main-require_invoicing_list_email', +% $cust_main->agentnum) +% ) { +% # we need a contact email for this customer (either because that's +% # policy, or because otherwise they won't receive invoices) but we +% # don't have one. + <% emt('none') %> +% } else { + <% emt('no') %> +% } +% } # end of invoicing email + % if ( $cust_main->company ) { <% mt('Company') |h %> @@ -61,7 +82,7 @@ % } elsif ( $this eq 'ship' ) { % if ( $cust_main->ship_company ) { # mostly obsolete these days... - <% mt('Company') |h %> + <% mt('Company') |h %> <% $cust_main->ship_company |h %> % } @@ -72,7 +93,7 @@ % if ( $location->locationname ) { - <% mt('Location ID') |h %> + <% mt('Location ID') |h %> <% $location->locationname |h %> % } @@ -101,12 +122,12 @@ (<% $location->county |h %> county)\ % } <% ($location->city || $location->county) ? ', ' : ''%><% state_label( $location->state, $location->country ) |h %> - <% $location->zip %> + <% $location->zip |h %> - <% code2country( $location->country ) %> + <% $location->country_full |h %> % if ( $location->latitude && $location->longitude ) { @@ -139,7 +160,7 @@ % if ( $cust_main->get('fax') ) { - <% mt('Fax') |h %> + <% mt('Fax') |h %> <% $cust_main->get('fax') || ' ' %> @@ -150,9 +171,9 @@ % if ( $conf->exists('show_stateid') ) { - <% $stateid_label %> + <% $stateid_label %> <% $cust_main->masked('stateid') || ' ' %> - <% $stateid_state_label %> + <% $stateid_state_label %> <% $cust_main->stateid_state || ' ' %> @@ -195,8 +216,6 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my $cust_main = shift; my $conf = new FS::Conf; -my @invoicing_list = $cust_main->invoicing_list; -my $no = emt('no'); +my @invoicing_list = $cust_main->invoicing_list_emailonly; -