NG auth: autocreate records for external users, RT#21563
[freeside.git] / httemplate / view / cust_main / notes.html
1 % if ( scalar(@notes) ) {
2
3 <SCRIPT TYPE="text/javascript">
4
5     function display_notes_classnum(classnum){
6         document.getElementById('notes_'+classnum).style.display = 'block';
7         document.getElementById('notes_tablink_'+classnum).style.fontWeight = 'bold';
8
9         var divs = document.getElementsByTagName("div");
10         var i;
11         for(i=0; i < divs.length; i++){
12             var d = divs[i];
13             if(d.id.length > 6 && d.id.substring(0,6) == 'notes_') {
14                 if(divs[i].id != 'notes_'+classnum) {
15                     divs[i].style.display = 'none';
16                 }
17             }
18         }
19         
20         var as = document.getElementsByTagName("a");
21         for(i=0; i < as.length; i++){
22             var a = as[i];
23             if(a.id.length > 14 && a.id.substring(0,14) == 'notes_tablink_') {
24                 if(as[i].id != 'notes_tablink_'+classnum) {
25                     as[i].style.fontWeight = 'normal';
26                 }
27             }
28         }
29     }
30
31 </SCRIPT>
32
33   <& /elements/init_overlib.html &>
34
35 % my $bgcolor1 = '#eeeeee';
36 % my $bgcolor2 = '#ffffff';
37 % my $bgcolor = '';
38 % my $last_classnum = -1;
39 % my $skipheader = 0;
40 % my %classes = ();
41 %
42 % foreach my $note (@notes) {
43 %
44 %   if ( $bgcolor eq $bgcolor1 ) {
45 %     $bgcolor = $bgcolor2;
46 %   } else {
47 %     $bgcolor = $bgcolor1;
48 %   }
49 %
50 %   my $pop = popurl(3);
51 %   my $notenum = $note->notenum;
52 %   my $onclick = include( '/elements/popup_link_onclick.html',
53 %                            'action'      => popurl(2).
54 %                                             'edit/cust_main_note.cgi'.
55 %                                             "?custnum=$custnum".
56 %                                             ";notenum=$notenum",
57 %                            'actionlabel' => emt('Edit customer note'),
58 %                            'width'       => 616,
59 %                            'height'      => 538, #575
60 %                            'frame'       => 'top',
61 %                        );
62 %   my $clickjs = qq!onclick="$onclick"!;
63 %
64 %   my $edit = '';
65 %   if ($curuser->access_right('Edit customer note') ) {
66 %     $edit = qq! <A HREF="javascript:void(0);" $clickjs>(!.emt('edit').')</A>';
67 %   }
68 %
69 % if ( $last_classnum != $note->classnum && !$skipheader ) {
70 % my $tmp_classnum = $note->classnum ? $note->classnum : 0;
71 % $classes{$tmp_classnum} = $note->classname ne '' ? $note->classname 
72 %                                                    : emt('Other');
73 % if ( $last_classnum != -1 ) {
74     </TABLE>
75   </DIV>
76 % }
77 % my $display = ($tmp_classnum == 0 || !$conf->exists('note-classes') 
78 %                                   || $conf->config('note-classes') < 2) 
79 %                                                           ? 'block' : 'none';
80         <DIV    id="notes_<% $tmp_classnum %>"
81                 style="display:<% $display %>"
82         >
83         <& /elements/table-grid.html &>
84         <TR>
85             <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Date') |h %></TH>
86 %   if ( $conf->exists('cust_main_note-display_times') ) {
87             <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Time') |h %></TH>
88 %   }
89             <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Person') |h %></TH>
90 %   if ($conf->exists('note-classes') && $conf->config('note-classes') == 1) {
91             <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Class') |h %></TH>
92 %   }
93             <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Note') |h %></TH>
94 %   if ($curuser->access_right('Edit customer note') ) {
95             <TH CLASS="grid" BGCOLOR="#cccccc">&nbsp;</TH>
96 %   }
97         </TR>
98 % $skipheader = (!$conf->exists('note-classes') || $conf->config('note-classes') < 2);
99 % $last_classnum = $note->classnum;
100 % }
101
102     <TR>
103       <% note_datestr($note,$conf,$bgcolor) %>
104       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
105         &nbsp;<% $note->usernum ? $note->access_user->name : $note->otaker %>
106       </TD>
107 % if ($conf->exists('note-classes') && $conf->config('note-classes') == 1) {
108       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
109         <% $note->classname %>   
110       </TD>
111 % }
112       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
113         <% $note->comments | defang %>
114       </TD>
115 % if($edit) {
116       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $edit %></TD>
117 % }
118     </TR>
119
120 % } #end display notes
121
122 </TABLE>
123 </DIV>
124
125 % if ( $conf->exists('note-classes') && $conf->config('note-classes') == 2 ) {
126 %       my($classnum,$classname);
127 <% mt('Show notes of class:') |h %> &nbsp; 
128 %       foreach my $classnum ( sort { $b <=> $a } (keys %classes) ) {
129             <A  id="notes_tablink_<% $classnum %>"
130                 HREF="javascript:display_notes_classnum(<% $classnum %>)"
131                 style="font-weight: <% $classnum == 0 ? 'bold' : 'normal' %>"
132             ><% $classes{$classnum} %></A>
133 %       }
134     <BR>
135 % }
136
137 % }
138 <%init>
139
140 use HTML::Defang;
141
142 my $conf = new FS::Conf;
143 my $curuser = $FS::CurrentUser::CurrentUser;
144
145 my(%opt) = @_;
146
147 my $custnum = $opt{'custnum'};
148
149 my $cust_main = qsearchs('cust_main', {'custnum' => $custnum} );
150 die "Customer not found!" unless $cust_main;
151
152 my (@notes) = $cust_main->notes($conf->exists('note-classes') && $conf->config('note-classes') == 2);
153
154 #subroutines
155
156 sub note_datestr {
157   my($note, $conf, $bgcolor) = @_ or return '';
158   my $td = qq{<TD CLASS="grid" BGCOLOR="$bgcolor" ALIGN="right">};
159   my $format = "$td%b&nbsp;%o,&nbsp;%Y</TD>";
160   $format .= "$td%l:%M%P</TD>"
161     if $conf->exists('cust_main_note-display_times');
162   ( my $strip = time2str($format, $note->_date) ) =~ s/ (\d)/$1/g;
163   $strip;
164 }
165
166 </%init>