X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fnotes.html;h=c02af386616f6cedd02a3868676340fed93fc1f1;hb=66feacf4ed45aa7b27d48f91c0d8741f0ad9b9de;hp=c1a33b0204feb68da566b682d6687a06f1bac936;hpb=30c3ff2acf90e1386fae00759078899c859faf36;p=freeside.git diff --git a/httemplate/view/cust_main/notes.html b/httemplate/view/cust_main/notes.html index c1a33b020..c02af3866 100755 --- a/httemplate/view/cust_main/notes.html +++ b/httemplate/view/cust_main/notes.html @@ -1,74 +1,67 @@ -% -% 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) ) { +% # Customer comments +% if ( $cust_main->comments =~ /[^\s\n\r]/ ) { +
<% mt('Comments') |h %> +<% ntable("#cccccc") %><% ntable("#cccccc",2) %> + + +
<% encode_entities($cust_main->comments) %>
+ + + +

+% } - +% # Attachments +% # XXX at some point move all of this into notes/attachments.html +% if( $curuser->access_right('View attachments') ) { +% # List attachments +<& notes/attachments.html, 'cust_main' => $cust_main &> +% if ($cgi->param('show_deleted')) { +">(<% mt('Show active attachments') |h %>) +% } elsif ( $curuser->access_right('View deleted attachments') +% && FS::Record->scalar_sql( +% 'SELECT 1 FROM cust_attachment WHERE custnum = ? '. +% ' AND disabled IS NOT NULL AND disabled > 0 LIMIT 1', +% $custnum ) +% ) +% { +">(<% mt('Show deleted attachments') |h %>) +% } +% } - +
+% if ( $curuser->access_right('View email logs') +% and FS::cust_msg->count("custnum = $custnum")) { +
+<& notes/email.html, 'cust_main' => $cust_main &> +
+% } +<%init> -%#<% include('/elements/table-grid.html') %> -% my $bgcolor1 = '#eeeeee'; -% my $bgcolor2 = '#ffffff'; -% my $bgcolor = ''; -% -% foreach my $note (@notes) { -% -% if ( $bgcolor eq $bgcolor1 ) { -% $bgcolor = $bgcolor2; -% } else { -% $bgcolor = $bgcolor1; -% } -% -% +use HTML::Defang; - - <% note_datestr($note,$conf,$bgcolor) %> - - - +my $conf = new FS::Conf; +my $curuser = $FS::CurrentUser::CurrentUser; -% } #end display notes +my(%opt) = @_; -
-  <%$note->otaker%>  - -  <%$note->comments%> -
-% } else { +my $cust_main = $opt{'cust_main'}; +my $custnum = $cust_main->custnum; -
-% } -% -%#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; -% } -% +my $view = $cgi->param('show') || $curuser->default_customer_view; +