X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main_note.cgi;h=18d59e9518b30a78cf8c48bdcd5f5940004c019b;hp=a089db2d131cd539027d95a0d5c2e1a84df01dcd;hb=ac8410cdb67639afeb84c84e975fffadf3e6cce1;hpb=a2faeced765b00c0339fd86d7905cb77318e3d20 diff --git a/httemplate/edit/cust_main_note.cgi b/httemplate/edit/cust_main_note.cgi index a089db2d1..18d59e951 100755 --- a/httemplate/edit/cust_main_note.cgi +++ b/httemplate/edit/cust_main_note.cgi @@ -6,14 +6,17 @@ -% if ($conf->exists('note-classes') && $conf->config('note-classes') > 0) { +% if (my @noteclasses = qsearch('cust_note_class',{ 'disabled' => '' })) { +% my %noteclassopts = $conf->exists('cust_main_note-require_class') +% ? ('disable_empty' => 1) +% : ('empty_label' => '(unclassified)'); Class   <% include( '/elements/select-table.html', 'table' => 'cust_note_class', + 'records' => \@noteclasses, 'name_col' => 'classname', 'curr_value' => $classnum, - 'empty_label' => '(none)', - 'hashref' => { 'disabled' => '' }, + %noteclassopts, ) %>
% } @@ -23,8 +26,12 @@ join '', split /
| /, $comment %> % } else { - <& /elements/htmlarea.html, 'field' => 'comment_html', - 'curr_value' => $comment + <& /elements/htmlarea.html, + 'field' => 'comment_html', + 'curr_value' => $comment, + 'config' => { toolbarStartupExpanded => Cpanel::JSON::XS::false, + height => 315, + }, &> % }