X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts_new.html;h=d55ee3dc3b43ac6e06290f6a2939b7071d4f86e6;hb=b2fd002f3285b70311642f8ff0025598d42bd16e;hp=f0bc0b8488542a169dcb26ed6894b36b8f081af6;hpb=167dbdad01e2c1b62fd9be43cc05212e8c874a02;p=freeside.git diff --git a/httemplate/view/cust_main/contacts_new.html b/httemplate/view/cust_main/contacts_new.html index f0bc0b848..d55ee3dc3 100644 --- a/httemplate/view/cust_main/contacts_new.html +++ b/httemplate/view/cust_main/contacts_new.html @@ -1,23 +1,26 @@ +% if ( $display and @cust_contacts ) {
Contacts -Edit contacts <& /elements/table-grid.html &> -% my $bgcolor1 = '#eeeeee'; -% my $bgcolor2 = '#ffffff'; -% my $bgcolor = $bgcolor2; -% my $th = ''; + +% my $th = ''; <%$th%>Type <%$th%>Contact <%$th%>Email + <%$th%>Send invoices <%$th%>Self-service % foreach my $phone_type (@phone_type) { <%$th%><% $phone_type->typename |h %> % } <%$th%>Comment + +% my $bgcolor1 = '#ffffff'; +% my $bgcolor2 = '#eeeeee'; +% my $bgcolor = $bgcolor2; % foreach my $cust_contact ( @cust_contacts ) { % my $contact = $cust_contact->contact; % my $td = qq(); @@ -28,7 +31,7 @@ % my @contact_email = $contact->contact_email; <%$td%><% join(', ', map $_->emailaddress, @contact_email) %> - + <%$td%><% $contact->invoice_dest eq 'Y' ? 'Yes' : 'No' %> <%$td%> % if ( $cust_contact->selfservice_access ) { Enabled @@ -60,6 +63,7 @@ % } % } +%} <%once> my @phone_type = qsearch({table=>'phone_type', order_by=>'weight'}); @@ -72,4 +76,9 @@ my( $cust_main ) = @_; my @cust_contacts = $cust_main->cust_contact; +# residential customers have a default "invisible" contact, but if they +# somehow get more than one contact, show them +my $display = (length($cust_main->residential_commercial) > 0) + or ( scalar(@cust_contacts) > 1 ); +