X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fnotes.html;h=1cd6e0970820d2fe8b6a1dc62178d3c13684a36c;hb=9fae251fc1e3069694ebaf4fae62bde844f45cff;hp=f2d11693030b637b4ab59390db50ae395030d8f2;hpb=0c81ee14be99875c8f9f9e34a442a23543333611;p=freeside.git diff --git a/httemplate/view/cust_main/notes.html b/httemplate/view/cust_main/notes.html index f2d116930..1cd6e0970 100755 --- a/httemplate/view/cust_main/notes.html +++ b/httemplate/view/cust_main/notes.html @@ -1,93 +1,104 @@ -% -% 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) ) { - - - - - - - - -% 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 $clickjs = qq!onclick="overlib( OLiframeContent('${pop}edit/! . -% qq!cust_main_note.cgi?custnum=$custnum&! . -% qq!notenum=$notenum', 616, ! . -% qq!386, 'cust_main_note_popup' ), CAPTION, 'Edit customer ! . -% qq!note', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, ! . -% qq!CLOSECLICK, FRAME, top); return false;"!; -% -% my ($el, $eel); -% if ($curuser->access_right('Edit customer note') ) { -% $el = qq!!; -% $eel = qq!!; -% }else{ -% $el = $eel = ''; -% } - +% # Customer comments +% if ( $cust_main->comments =~ /[^\s\n\r]/ ) { +
<% mt('Comments') |h %> +<% ntable("#cccccc") %> - <% note_datestr($note,$conf,$bgcolor, $el, $eel) %> - - +
<% ntable("#cccccc",2) %>
- <% $el %>  <%$note->otaker%>  <% $eel %> - -  <%$note->comments%> + +
<% encode_entities($cust_main->comments) %>
+

+% } + +% # Notes, if any + +% my $notecount = scalar($cust_main->notes(0)); +% if ( ! $conf->exists('cust_main-disable_notes') || $notecount) { + +% unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) { +

+ <% mt('Notes') |h %> +

+ +% } + +% if ( $curuser->access_right('Add customer note') && +% ! $conf->exists('cust_main-disable_notes') +% ) { + + <& /elements/popup_link-cust_main.html, + 'label' => emt('Add customer note'), + 'action' => $p. 'edit/cust_main_note.cgi', + 'actionlabel' => emt('Enter customer note'), + 'cust_main' => $cust_main, + 'width' => 616, + 'height' => 538, #575 + &> + +% } +
-% } #end display notes - - - -% } -% -%#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; +% # 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 &> +% # "Attach file" link +% if(! $conf->config('disable_cust_attachment') +% and $curuser->access_right('Add attachment')) { +<& /elements/popup_link-cust_main.html, + 'label' => emt('Attach file'), + 'action' => $p.'edit/cust_main_attach.cgi', + 'actionlabel' => emt('Upload file'), + 'cust_main' => $cust_main, + 'width' => 480, + 'height' => 296, +&> +% } + +% 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")) { +
+% if (!$cgi->param('order_by')) { +% my $order_by = '_date'; +% $order_by .= ' DESC' if $curuser->option('history_order') eq 'newest'; +% $cgi->param('order_by', $order_by); +% } +<& /search/cust_msg.html, + nohtmlheader => 1, + html_init => mt('Mail sent to this customer: '), +&> % } -% +<%init> + +use HTML::Defang; + +my $conf = new FS::Conf; +my $curuser = $FS::CurrentUser::CurrentUser; + +my(%opt) = @_; + +my $cust_main = $opt{'cust_main'}; +my $custnum = $cust_main->custnum; + +my $view = $cgi->param('show') || $curuser->default_customer_view; +