1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<% include('/elements/header-popup.html', "$action Customer Note") %>
<% include('/elements/error.html') %>
<FORM ACTION="<% popurl(1) %>process/cust_main_note.cgi" METHOD=POST>
<INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>">
<INPUT TYPE="hidden" NAME="notenum" VALUE="<% $notenum %>">
% if ($conf->exists('note-classes') && $conf->config('note-classes') > 0) {
Class
<% include( '/elements/select-table.html',
'table' => 'cust_note_class',
'name_col' => 'classname',
'curr_value' => $classnum,
'empty_label' => '(none)',
'hashref' => { 'disabled' => '' },
) %>
<BR>
% }
% if ( $FS::CurrentUser::CurrentUser->option('disable_html_editor') ) {
<TEXTAREA NAME="comment_plain" ROWS="12" COLS="60"><%
join '', split /<br \/>| /, $comment
%></TEXTAREA>
% } else {
<& /elements/htmlarea.html, 'field' => 'comment_html',
'curr_value' => $comment
&>
% }
<BR>
<& /elements/checkbox.html, 'field' => 'sticky',
'value' => 1,
'curr_value' => $sticky,
&>
Sticky note<BR><BR>
<INPUT TYPE="submit" VALUE="<% $notenum ? emt("Apply changes") : emt("Add Note") %>">
</FORM>
</BODY>
</HTML>
<%init>
my $conf = new FS::Conf;
my $comment;
my $notenum = '';
my $classnum;
my $sticky = 0;
if ( $cgi->param('error') ) {
$comment = $cgi->param('comment');
$classnum = $cgi->param('classnum');
} 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;
$classnum = $note->classnum;
$sticky = $note->sticky;
}
$comment =~ s/\r//g; # remove weird line breaks to protect FCKeditor
$cgi->param('custnum') =~ /^(\d+)$/ or die "illegal custnum";
my $custnum = $1;
my $action = $notenum ? 'Edit' : 'Add';
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right("$action customer note");
</%init>
|