<% include('/elements/header-popup.html', "$action Customer Note") %> <% include('/elements/error.html') %>
<% include('/elements/htmlarea.html', 'field' => 'comment', 'curr_value' => $comment) %> % #

">
<%init> my $comment; my $notenum = ''; if ( $cgi->param('error') ) { $comment = $cgi->param('comment'); } elsif ( $cgi->param('notenum') =~ /^(\d+)$/ ) { $notenum = $1; die "illegal query ". $cgi->keywords unless $notenum; my $note = qsearchs('cust_main_note', { 'notenum' => $notenum }); die "no such note: ". $notenum unless $note; $comment = $note->comments; } $comment =~ s/\r//g; # remove weird line breaks to protect FCKeditor $cgi->param('custnum') =~ /^(\d+)$/ or die "illeagl custnum"; my $custnum = $1; my $action = $notenum ? 'Edit' : 'Add'; die "access denied" unless $FS::CurrentUser::CurrentUser->access_right("$action customer note");