summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-11-30 15:42:53 -0500
committerChristopher Burger <burgerc@freeside.biz>2018-12-03 09:41:00 -0500
commite41df0b878914b09c30ee7c75fe3b34fa7bd68b2 (patch)
tree0a5b965da03cf4e00339d454f72c0915578537ee /httemplate/elements
parentce472e5563731dd1982cd97d0cbd4a2c6bdb31e9 (diff)
RT# 71289 - now shows contact email and phone changes while attached to customer
Conflicts: httemplate/elements/change_history_common.html httemplate/view/cust_main/change_history.html
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/change_history_common.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html
index a526493ce..673068ac8 100644
--- a/httemplate/elements/change_history_common.html
+++ b/httemplate/elements/change_history_common.html
@@ -227,6 +227,8 @@ my %h_table_labelsub = (
#'h_phone_device'
#'h_cust_tag' => $tag_labelsub,
'h_contact' => $contact_labelsub,
+ 'h_contact_phone' => $contact_labelsub,
+ 'h_contact_email' => $contact_labelsub,
);
my $tag_descripsub = sub {
@@ -235,6 +237,24 @@ my $tag_descripsub = sub {
'<SPAN STYLE="background-color: #'.$part_tag->tagcolor.'">'. encode_entities($part_tag->tagname). '</SPAN>';
};
+my $contact_descripsub = sub {
+ my($item, $label) = @_;
+ my $phone_type = qsearchs('phone_type',{ phonetypenum => $item->phonetypenum });
+ my @fields = $item->fields;
+ join(', ',
+ map {
+ my $value = ( $_ eq "phonetypenum" )
+ ? $item->get($_).' ('.$phone_type->typename.')'
+ : $item->get($_);
+ $value = substr($value, 0, 77).'...' if length($value) > 80;
+ $value = encode_entities($value);
+ "<I>$_</I>:<B>$value</B>";
+ }
+ grep { ! /^(history|custnum$)/i }
+ @fields
+ );
+};
+
my $discounts = {};
my $discount_descripsub = sub {
my($item) = @_;
@@ -255,6 +275,7 @@ my $discount_descripsub = sub {
my %h_table_descripsub = (
'h_cust_pkg_discount' => $discount_descripsub,
'h_cust_tag' => $tag_descripsub,
+ 'h_contact_phone' => $contact_descripsub,
);
my $cust_pkg_date_format = '%b %o, %Y';