summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-02-26 12:00:12 -0500
committerChristopher Burger <burgerc@freeside.biz>2018-02-26 12:00:12 -0500
commit66feacf4ed45aa7b27d48f91c0d8741f0ad9b9de (patch)
tree26f831e81f685e7da511a0715a941a4dd8646ee6 /httemplate/elements
parented2d4de2ea785d30a54fb069b29f9618a40113c9 (diff)
RT# 79497 - Changed email address check to all emails to be seperated by a space. Added contacts to change history.
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/change_history_common.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html
index 5fba236..4c05f4e 100644
--- a/httemplate/elements/change_history_common.html
+++ b/httemplate/elements/change_history_common.html
@@ -210,6 +210,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,
@@ -222,6 +228,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 {