X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fchange_history_common.html;h=f22e093605fd02fa45d8f422b2ca936d5c44f4dd;hp=5fba23621d9eb1ad91249ba96e79ea44d3c919e0;hb=b71b1576c68bc40ad26592b354feace37a029f0e;hpb=00366d997194ebfa62b8502e638cdfef4c932256 diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html index 5fba23621..f22e09360 100644 --- a/httemplate/elements/change_history_common.html +++ b/httemplate/elements/change_history_common.html @@ -53,6 +53,8 @@ % $description = &{ $h_table_descripsub{$item->table} }( $item, $tables{'cust_tag'} ) % if $single_cust && $h_table_descripsub{$item->table}; % } else { +% my @fields = $item->fields; +% push @fields, 'message_dest' if $item->table eq 'h_contact'; % $description = join(', ', % map { my $value = ( $_ =~ /(^pay(info|cvv)|^ss|_password)$/ ) % ? 'N/A' @@ -71,7 +73,7 @@ % : ( $item->get($_) =~ /\S/ ) % } % grep { ! /^(history|custnum$)/i } -% $item->fields +% @fields % ); % if ( $single_cust && $h_table_descripsub{$item->table} ) { % $description = &{ $h_table_descripsub{$item->table} }( $item ); @@ -210,6 +212,12 @@ my $tag_labelsub = sub { $label. ': '. encode_entities($part_tag->tagname). ''; }; +my $contact_labelsub = sub { + my($item, $label) = @_; + my $contact = qsearchs('h_contact',{ contactnum => $item->contactnum }); + $label. ': '. encode_entities($contact->first). ' ' . encode_entities($contact->last) . ''; +}; + my %h_table_labelsub = ( 'h_cust_pkg' => $pkg_labelsub, 'h_svc_acct' => $svc_labelsub, @@ -222,6 +230,8 @@ my %h_table_labelsub = ( 'h_svc_phone' => $svc_labelsub, #'h_phone_device' #'h_cust_tag' => $tag_labelsub, + 'h_contact' => $contact_labelsub, + 'h_cust_contact' => $contact_labelsub, ); my $tag_descripsub = sub {