X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fnotes.html;h=62502002e660ea207ff02737b62313f0411e2d66;hb=d98e4631640eaaf28b4c022efedd49b640a283c6;hp=ed50c58c23475eca6d6d80be0d515b0540cfbdc8;hpb=ca121e95ebea9fd78f2a06cfdddb159463c8e47c;p=freeside.git diff --git a/httemplate/view/cust_main/notes.html b/httemplate/view/cust_main/notes.html index ed50c58c2..62502002e 100755 --- a/httemplate/view/cust_main/notes.html +++ b/httemplate/view/cust_main/notes.html @@ -1,95 +1,61 @@ -% -% my $conf = new FS::Conf; -% my $curuser = $FS::CurrentUser::CurrentUser; -% -% $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) %>
+ + + +

+% } -<% include('/elements/init_overlib.html') %> +% # Notes, if any + +% my $notecount = scalar($cust_main->notes(0)); +% if ( ! $conf->exists('cust_main-disable_notes') || $notecount) { + +% # actually display notes +<& notes/notes.html, 'cust_main' => $cust_main &> +
+% } # end of notes + +% # 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')) { +">(<% 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> -% 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(3). -% 'edit/cust_main_note.cgi'. -% "?custnum=$custnum". -% ";notenum=$notenum", -% 'actionlabel' => 'Edit customer note', -% 'width' => 616, -% 'height' => 408, -% 'frame' => 'top', -% ); -% my $clickjs = qq!onclick="$onclick"!; -% -% my ($el, $eel); -% if ($curuser->access_right('Edit customer note') ) { -% $el = qq!!; -% $eel = qq!!; -% }else{ -% $el = $eel = ''; -% } +use HTML::Defang; - - <% note_datestr($note,$conf,$bgcolor, $el, $eel) %> - - - +my $conf = new FS::Conf; +my $curuser = $FS::CurrentUser::CurrentUser; -% } #end display notes +my(%opt) = @_; -
- <% $el %>  <%$note->otaker%>  <% $eel %> - -  <%$note->comments%> -
+my $cust_main = $opt{'cust_main'}; +my $custnum = $cust_main->custnum; -% } -% -%#subroutines -% -%sub note_datestr { -% my($note, $conf, $bgcolor, $el, $eel) = @_ or return ''; -% my $format=qq{$el%b$eel}. -% qq{$el %o,$eel}. -% qq{$el %Y $eel}; -% $format .= qq{$el %l$eel}. -% qq{$el:$eel}. -% qq{$el%M$eel}. -% qq{$el %P $eel} -% 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; +