blob: c1a33b0204feb68da566b682d6687a06f1bac936 (
plain)
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
|
%
% my $conf = new FS::Conf;
%
% $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) ) {
<STYLE TYPE="text/css">
body { background: #e8e8e8 }
.inv table { border: none }
.inv TH { border: none }
.inv TD { border: none }
</STYLE>
<TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 BORDER=0 >
%#<% include('/elements/table-grid.html') %>
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor = '';
%
% foreach my $note (@notes) {
%
% if ( $bgcolor eq $bgcolor1 ) {
% $bgcolor = $bgcolor2;
% } else {
% $bgcolor = $bgcolor1;
% }
%
%
<TR>
<% note_datestr($note,$conf,$bgcolor) %>
<TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
<%$note->otaker%>
</TD>
<TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
<%$note->comments%>
</TD>
</TR>
% } #end display notes
</TABLE>
% } else {
<BR>
% }
%
%#subroutines
%
%sub note_datestr {
% my($note, $conf, $bgcolor) = @_ or return '';
% my $format=qq{<TD class="inv" bgcolor="$bgcolor" align="left"><B>%b</B></TD>}.
% qq{<TD class="inv" bgcolor="$bgcolor" align="right"><B> %o,</B></TD>}.
% qq{<TD class="inv" bgcolor="$bgcolor" align="right"><B> %Y </B></TD>};
% $format .= qq{<TD class="inv" bgcolor="$bgcolor" ALIGN="right"><B> %l</TD>}.
% qq{<TD class="inv" bgcolor="$bgcolor" ALIGN="center"><B>:</B></TD>}.
% qq{<TD class="inv" bgcolor="$bgcolor" ALIGN="left"><B>%M</B></TD>}.
% qq{<TD class="inv" bgcolor="$bgcolor" ALIGN="left"><B> %P </B></TD>}
% if $conf->exists('cust_main_note-display_times');
% ( my $strip = time2str($format, $note->_date) ) =~ s/ (\d)/$1/g;
% $strip;
% }
%
|