From: Ivan Kohler <ivan@freeside.biz>
Date: Fri, 30 Jun 2017 20:44:01 +0000 (-0700)
Subject: fix email on contact report
X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=60a758ffd673991869547bf57cba228d53ce6ef3

fix email on contact report
---

diff --git a/httemplate/search/contact.html b/httemplate/search/contact.html
index 44c864c16..759f09521 100644
--- a/httemplate/search/contact.html
+++ b/httemplate/search/contact.html
@@ -24,7 +24,8 @@ my $addl_from = '';
 
 my $email_sub = sub {
   my $contact = shift;
-  my @contact_email = $contact->contact_email;
+  #can't because contactnum is in the wrong field #my @contact_email = $contact->contact_email;
+  my @contact_email = qsearch('contact_email', { 'contactnum' => $contact->contact_contactnum } );
   join(', ', map $_->emailaddress, @contact_email);
 };