no need for a one-choice "Add new location" location dropdown on prospect add, RT...
[freeside.git] / httemplate / elements / change_history_common.html
index 7d4bd10..dfcfcb9 100644 (file)
@@ -3,6 +3,7 @@
 %   my $bgcolor2 = '#ffffff';
 %   my $bgcolor = '';
 
+<THEAD>
 <TR>
   <TH CLASS="grid" BGCOLOR="#cccccc">User</TH>
   <TH CLASS="grid" BGCOLOR="#cccccc">Date</TH>
@@ -14,6 +15,7 @@
   <TH CLASS="grid" BGCOLOR="#cccccc">Action</TH>
   <TH CLASS="grid" BGCOLOR="#cccccc">Description</TH>
 </TR>
+</THEAD>
 
 % foreach my $item ( @history ) {
 %   my $history_other = '';
     </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)$/ ) 
 %       if ( $single_cust && $h_table_descripsub{$item->table} ) {
           <% &{ $h_table_descripsub{$item->table} }( $item ) %>
 %       }
-%     }
+%     }  
     </TD>
 
   </TR>
@@ -195,6 +202,12 @@ my $svc_labelsub = sub {
   $label. ': <b>'. encode_entities($item->label($item->history_date)). '</b>';
 };
 
+my $tag_labelsub = sub {
+  my($item, $label) = @_;
+  my $part_tag = qsearchs('part_tag',{ tagnum => $item->tagnum });
+  $label. ': <SPAN STYLE="background-color: #'.$part_tag->tagcolor.'">'. encode_entities($part_tag->tagname). '</SPAN>';
+};
+
 my %h_table_labelsub = (
   'h_cust_pkg'      => $pkg_labelsub,
   'h_svc_acct'      => $svc_labelsub,
@@ -206,8 +219,15 @@ my %h_table_labelsub = (
   'h_svc_external'  => $svc_labelsub,
   'h_svc_phone'     => $svc_labelsub,
   #'h_phone_device'
+  #'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) = @_;
@@ -227,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';