X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fnotes.html;h=a6378f46aea1233733553d0907347d2f0555689c;hb=9c9a1838b54292c62e940d7e6cee5141ea8e9b5c;hp=c1a33b0204feb68da566b682d6687a06f1bac936;hpb=c8cccb4a92adceb943c635fe62dad0d034462ce0;p=freeside.git diff --git a/httemplate/view/cust_main/notes.html b/httemplate/view/cust_main/notes.html index c1a33b020..a6378f46a 100755 --- a/httemplate/view/cust_main/notes.html +++ b/httemplate/view/cust_main/notes.html @@ -1,33 +1,26 @@ -% -% my $conf = new FS::Conf; -% -% $cgi->param('custnum') =~ /^(\d+)$/ -% or die "No customer specified (bad URL)!"; -% my $custnum = $1; -% -% my $cust_main = qsearchs('cust_main', {'custnum' => $custnum} ); -% die "Custimer not found!" unless $cust_main; -% -% my (@notes) = $cust_main->notes(); -% if ( scalar(@notes) ) { - - + <% include("/elements/table-grid.html") %> - + + +% if ( $conf->exists('cust_main_note-display_times') ) { + +% } + + +% if ($curuser->access_right('Edit customer note') ) { + +% } + -%#<% include('/elements/table-grid.html') %> -% my $bgcolor1 = '#eeeeee'; -% my $bgcolor2 = '#ffffff'; -% my $bgcolor = ''; +% my $bgcolor1 = '#eeeeee'; +% my $bgcolor2 = '#ffffff'; +% my $bgcolor = ''; % -% foreach my $note (@notes) { +% foreach my $note (@notes) { % % if ( $bgcolor eq $bgcolor1 ) { % $bgcolor = $bgcolor2; @@ -35,40 +28,67 @@ body { background: #e8e8e8 } % $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' => 580, +% '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_datestr($note,$conf,$bgcolor) %> + + +% if($edit) { + +% } + % } #end display notes
DateTimePersonNote 
-  <%$note->otaker%>  - -  <%$note->comments%> -
+  <% $note->otaker%> + +  <%$note->comments%> + <% $edit %>
-% } else { -
-% } -% -%#subroutines -% -%sub note_datestr { -% my($note, $conf, $bgcolor) = @_ or return ''; -% my $format=qq{%b}. -% qq{ %o,}. -% qq{ %Y }; -% $format .= qq{ %l}. -% qq{:}. -% qq{%M}. -% qq{ %P } -% if $conf->exists('cust_main_note-display_times'); -% ( my $strip = time2str($format, $note->_date) ) =~ s/ (\d)/$1/g; -% $strip; % } -% +<%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; +} +