X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fnotes.html;h=71c4fb4d5ec1656bc576deadecf1658e3ea443ce;hb=a363a49c213f1e64add5c34a8a2bd17d154adfd3;hp=74d3f602ba079773022f7d37d1cfcbec258e9331;hpb=624b2d44625f69d71175c3348cae635d580c890b;p=freeside.git diff --git a/httemplate/view/cust_main/notes.html b/httemplate/view/cust_main/notes.html index 74d3f602b..71c4fb4d5 100755 --- a/httemplate/view/cust_main/notes.html +++ b/httemplate/view/cust_main/notes.html @@ -1,24 +1,43 @@ % 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') ) { -   -% } - + <% include('/elements/init_overlib.html') %> % my $bgcolor1 = '#eeeeee'; % my $bgcolor2 = '#ffffff'; % my $bgcolor = ''; +% my $last_classnum = -1; +% my $skipheader = 0; +% my %classes = (); % % foreach my $note (@notes) { % @@ -35,7 +54,7 @@ % 'edit/cust_main_note.cgi'. % "?custnum=$custnum". % ";notenum=$notenum", -% 'actionlabel' => 'Edit customer note', +% 'actionlabel' => mt('Edit customer note'), % 'width' => 616, % 'height' => 538, #575 % 'frame' => 'top', @@ -44,16 +63,55 @@ % % my $edit = ''; % if ($curuser->access_right('Edit customer note') ) { -% $edit = qq! (edit)!; +% my $editlabel = mt('edit'); +% $edit = qq! ($editlabel)!; % } +% +% if ( $last_classnum != $note->classnum && !$skipheader ) { +% my $tmp_classnum = $note->classnum ? $note->classnum : 0; +% $classes{$tmp_classnum} = $note->classname ne '' ? $note->classname +% : mt('Other'); +% if ( $last_classnum != -1 ) { + + +% } +% my $display = ($tmp_classnum == 0 || !$conf->exists('note-classes') +% || $conf->config('note-classes') < 2) +% ? 'block' : 'none'; +
+ <% include("/elements/table-grid.html") %> + + <% mt('Date') |h %> +% if ( $conf->exists('cust_main_note-display_times') ) { + <% mt('Time') |h %> +% } + <% mt('Person') |h %> +% if ($conf->exists('note-classes') && $conf->config('note-classes') == 1) { + <% mt('Class') |h %> +% } + <% mt('Note') |h %> +% if ($curuser->access_right('Edit customer note') ) { +   +% } + +% $skipheader = (!$conf->exists('note-classes') || $conf->config('note-classes') < 2); +% $last_classnum = $note->classnum; +% } <% note_datestr($note,$conf,$bgcolor) %>  <% $note->usernum ? $note->access_user->name : $note->otaker %> +% if ($conf->exists('note-classes') && $conf->config('note-classes') == 1) { -  <% $note->comments | defang %> + <% $note->classname %> + +% } + + <% $note->comments | defang %> % if($edit) { <% $edit %> @@ -63,6 +121,19 @@ % } #end display notes +
+ +% if ( $conf->exists('note-classes') && $conf->config('note-classes') == 2 ) { +% my($classnum,$classname); +<% mt('Show notes of class:') |h %>   +% foreach my $classnum ( sort { $b <=> $a } (keys %classes) ) { + <% $classes{$classnum} %> +% } +
+% } % } <%init> @@ -77,9 +148,9 @@ my(%opt) = @_; my $custnum = $opt{'custnum'}; my $cust_main = qsearchs('cust_main', {'custnum' => $custnum} ); -die "Custimer not found!" unless $cust_main; +die "Customer not found!" unless $cust_main; -my (@notes) = $cust_main->notes(); +my (@notes) = $cust_main->notes($conf->exists('note-classes') && $conf->config('note-classes') == 2); #subroutines