summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-03-31 14:45:56 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-05-24 13:37:46 -0400
commit2e24da864a3a71ec242f8feb2c13042a1d61faeb (patch)
treee9ea65fc2804881bc0dd93817efb8e704f9e3e40
parent5a50d03d042651bf98d983f1c06fe060d56c328c (diff)
RT# 74122 - Updated Change History to be more user friendly. Tags are now color coded user readable.
-rw-r--r--httemplate/elements/change_history_common.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html
index 961176779..7300707d1 100644
--- a/httemplate/elements/change_history_common.html
+++ b/httemplate/elements/change_history_common.html
@@ -100,8 +100,13 @@
</TD>
<TD ALIGN="left" CLASS="grid" BGCOLOR="<% $bgcolor %>">
+% my $description = '';
% if ( $item->table eq 'legacy_cust_history' ) {
<% $item->description |h %>
+% } elsif ( $item->table eq 'h_cust_tag' ) {
+% $description = &{ $h_table_descripsub{$item->table} }( $item, $tables{'cust_tag'} )
+% if $single_cust && $h_table_descripsub{$item->table};
+ <% $description %>
% } else {
<% join(', ',
map { my $value = ( $_ =~ /(^pay(info|cvv)|^ss|_password)$/ )
@@ -127,7 +132,7 @@
% if ( $single_cust && $h_table_descripsub{$item->table} ) {
<% &{ $h_table_descripsub{$item->table} }( $item ) %>
% }
-% }
+% }
</TD>
</TR>
@@ -212,9 +217,15 @@ my %h_table_labelsub = (
'h_svc_external' => $svc_labelsub,
'h_svc_phone' => $svc_labelsub,
#'h_phone_device'
- 'h_cust_tag' => $tag_labelsub,
+ #'h_cust_tag' => $tag_labelsub,
);
+my $tag_descripsub = sub {
+ my($item, $label) = @_;
+ my $part_tag = qsearchs('part_tag',{ tagnum => $item->tagnum });
+ '<SPAN STYLE="background-color: #'.$part_tag->tagcolor.'">'. encode_entities($part_tag->tagname). '</SPAN>';
+};
+
my $discounts = {};
my $discount_descripsub = sub {
my($item) = @_;
@@ -234,6 +245,7 @@ my $discount_descripsub = sub {
my %h_table_descripsub = (
'h_cust_pkg_discount' => $discount_descripsub,
+ 'h_cust_tag' => $tag_descripsub,
);
my $cust_pkg_date_format = '%b %o, %Y';