X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fchange_history_common.html;h=dfcfcb9588e0df3d225a76c89f8865f5ec15a2e8;hp=5aaf6e691fd0ed09df8b1211ea072c2adfb3a4c4;hb=3d07673d44b50749619bdf1f2b6b931c7ca30d8d;hpb=cae3079c3d6a2ea7906e369e882a814911f220c2 diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html index 5aaf6e691..dfcfcb958 100644 --- a/httemplate/elements/change_history_common.html +++ b/httemplate/elements/change_history_common.html @@ -102,8 +102,13 @@ +% 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)$/ ) @@ -129,7 +134,7 @@ % if ( $single_cust && $h_table_descripsub{$item->table} ) { <% &{ $h_table_descripsub{$item->table} }( $item ) %> % } -% } +% } @@ -214,9 +219,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 }); + ''. encode_entities($part_tag->tagname). ''; +}; + my $discounts = {}; my $discount_descripsub = sub { my($item) = @_; @@ -236,6 +247,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';