X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fchange_history_common.html;h=d734053431f280f44c5781993f6cf8c69500f9fc;hp=4c05f4e3a2907b9e5824545dbd00428d74715028;hb=HEAD;hpb=66feacf4ed45aa7b27d48f91c0d8741f0ad9b9de diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html index 4c05f4e3a..d73405343 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 ); @@ -229,6 +231,9 @@ my %h_table_labelsub = ( #'h_phone_device' #'h_cust_tag' => $tag_labelsub, 'h_contact' => $contact_labelsub, + 'h_cust_contact' => $contact_labelsub, + 'h_contact_phone' => $contact_labelsub, + 'h_contact_email' => $contact_labelsub, ); my $tag_descripsub = sub { @@ -237,6 +242,24 @@ my $tag_descripsub = sub { ''. encode_entities($part_tag->tagname). ''; }; +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); + "$_:$value"; + } + grep { ! /^(history|custnum$)/i } + @fields + ); +}; + my $discounts = {}; my $discount_descripsub = sub { my($item) = @_; @@ -257,6 +280,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';