X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fcust_main_note.cgi;h=1fd136723c953395fd84f91cbf29ae4c188fcd23;hb=b71b1576c68bc40ad26592b354feace37a029f0e;hp=9689ca6d6423269b68c9ea574ca0561b49cd27b2;hpb=5e05724a635a22776f1b973f5d7e77989da4e048;p=freeside.git diff --git a/httemplate/edit/process/cust_main_note.cgi b/httemplate/edit/process/cust_main_note.cgi index 9689ca6d6..1fd136723 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -2,17 +2,7 @@ % $cgi->param('error', $error); <% $cgi->redirect(popurl(2). 'cust_main_note.cgi?'. $cgi->query_string ) %> %} else { -% -<% header('Note ' . ($notenum ? 'updated' : 'added') ) %> - - -% +<& /elements/popup-topreload.html, mt( 'Note '. ($notenum ? 'updated' : 'added') ) &> % } <%init> @@ -24,16 +14,22 @@ $cgi->param('notenum') =~ /^(\d*)$/ or die "Illegal notenum: ". $cgi->param('notenum'); my $notenum = $1; -my $otaker = $FS::CurrentUser::CurrentUser->name; -$otaker = $FS::CurrentUser::CurrentUser->username - if ($otaker eq "User, Legacy"); +$cgi->param('classnum') =~ /^(\d*)$/; +my $classnum = $1; + +my $comment = $cgi->param('comment_html') || + join("
\n", + split "(?:\r|\n)+", $cgi->param('comment_plain') + ); my $new = new FS::cust_main_note ( { notenum => $notenum, custnum => $custnum, + classnum => $classnum ? $classnum : undef, _date => time, - otaker => $otaker, - comments => $cgi->param('comment'), + usernum => $FS::CurrentUser::CurrentUser->usernum, + comments => $comment, + sticky => scalar( $cgi->param('sticky') ), } ); my $error;