diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-02-26 12:00:12 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-02-26 17:01:57 -0500 |
commit | cedd94d2315b9c20f939a9619ba83156e7765b8b (patch) | |
tree | 6bceba19c333c4f7f0b1688bcb8b3240a1d173e7 /httemplate/elements | |
parent | 3120e258a9a859bba3b64e493cf6d922d8b49e4c (diff) |
RT# 79497 - Changed email address check to all emails to be seperated by a space. Added contacts to change history.
Conflicts:
httemplate/edit/process/cust_main.cgi
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/change_history_common.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html index 63337cb6a..a526493ce 100644 --- a/httemplate/elements/change_history_common.html +++ b/httemplate/elements/change_history_common.html @@ -208,6 +208,12 @@ my $tag_labelsub = sub { $label. ': <SPAN STYLE="background-color: #'.$part_tag->tagcolor.'">'. encode_entities($part_tag->tagname). '</SPAN>'; }; +my $contact_labelsub = sub { + my($item, $label) = @_; + my $contact = qsearchs('h_contact',{ contactnum => $item->contactnum }); + $label. ': <B>'. encode_entities($contact->first). ' ' . encode_entities($contact->last) . '</B>'; +}; + my %h_table_labelsub = ( 'h_cust_pkg' => $pkg_labelsub, 'h_svc_acct' => $svc_labelsub, @@ -220,6 +226,7 @@ my %h_table_labelsub = ( 'h_svc_phone' => $svc_labelsub, #'h_phone_device' #'h_cust_tag' => $tag_labelsub, + 'h_contact' => $contact_labelsub, ); my $tag_descripsub = sub { |