% if ( scalar(@notes) ) {
  <% include('/elements/init_overlib.html') %>
  <% include("/elements/table-grid.html") %>
  
    | Date%   if ( $conf->exists('cust_main_note-display_times') ) { | Time%   } | Person | Note%   if ($curuser->access_right('Edit customer note') ) { | %   } | 
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor = '';
%
% foreach my $note (@notes) {
%
%   if ( $bgcolor eq $bgcolor1 ) {
%     $bgcolor = $bgcolor2;
%   } else {
%     $bgcolor = $bgcolor1;
%   }
%
%   my $pop = popurl(3);
%   my $notenum = $note->notenum;
%   my $onclick = include( '/elements/popup_link_onclick.html',
%                            'action'      => popurl(2).
%                                             'edit/cust_main_note.cgi'.
%                                             "?custnum=$custnum".
%                                             ";notenum=$notenum",
%                            'actionlabel' => 'Edit customer note',
%                            'width'       => 616,
%                            'height'      => 538, #575
%                            'frame'       => 'top',
%                        );
%   my $clickjs = qq!onclick="$onclick"!;
%
%   my $edit = '';
%   if ($curuser->access_right('Edit customer note') ) {
%     $edit = qq! (edit)!;
%   }
    
      <% note_datestr($note,$conf,$bgcolor) %>
      | <% $note->otaker%> | <%$note->comments%>% if($edit) { | <% $edit %>% } | 
% } #end display notes
% }
<%init>
my $conf = new FS::Conf;
my $curuser = $FS::CurrentUser::CurrentUser;
my(%opt) = @_;
my $custnum = $opt{'custnum'};
my $cust_main = qsearchs('cust_main', {'custnum' => $custnum} );
die "Custimer not found!" unless $cust_main;
my (@notes) = $cust_main->notes();
#subroutines
sub note_datestr {
  my($note, $conf, $bgcolor) = @_ or return '';
  my $td = qq{};
  my $format = "$td%b %o, %Y";
  $format .= "$td%l:%M%P"
    if $conf->exists('cust_main_note-display_times');
  ( my $strip = time2str($format, $note->_date) ) =~ s/ (\d)/$1/g;
  $strip;
}
%init> |