show MAC address vendors
[freeside.git] / httemplate / view / elements / svc_Common.html
1 <%doc>
2
3 #Example:
4
5   include( 'elements/svc_Common.html, 
6
7              'table' => 'svc_something'
8
9              'labels' => {
10                            'column' => 'Label',
11                          },
12
13              #listref - each item is a literal column name (or method) or
14              # (notyet) coderef.  if not specified all columns (except for the
15              #primary key) will be viewable
16              'fields' => [
17                          ]
18
19              # defaults to "edit/$table.cgi?", will have svcnum appended
20              'edit_url' => 
21
22              #at the very bottom (well, as low as you can go from here)
23              'html_foot'  => '',
24
25          )
26
27 </%doc>
28 <SCRIPT>
29 function areyousure(href) {
30 % my $delmsg = emt("Permanently delete this [_1]?", $label);
31   if (confirm(<% $delmsg |js_string %>) == true)
32     window.location.href = href;
33 }
34 </SCRIPT>
35
36 % if ( $custnum ) { 
37
38   <& /elements/header.html, mt("View [_1]: [_2]",$label,$value) &>
39
40   <& /elements/small_custview.html, $custnum, '', 1,
41      "${p}view/cust_main.cgi" &>
42   <BR>
43
44 % } else { 
45
46   <& /elements/header.html, mt("View [_1]: [_2]",$label,$value), menubar(
47       emt("Cancel this (unaudited) [_1]",$label) =>
48             "javascript:areyousure(\'${p}misc/cancel-unaudited.cgi?$svcnum\')"
49   ) &>
50
51 % } 
52
53 % if ( $opt{radius_usage} ) {
54     <& svc_radius_usage.html,
55               'svc'      => $svc_x,
56               'part_svc' => $part_svc,
57               'cust_pkg' => $cust_pkg,
58     &>
59 % }
60
61 <% mt('Service #') |h %><B><% $svcnum %></B>
62 % if ( $custnum ) {
63 %   my $url = $opt{'edit_url'} || $p. 'edit/'. $opt{'table'}. '.cgi?';
64 <& /view/elements/svc_edit_link.html, 'svc' => $svc_x, 'edit_url' => $url &>
65 % }
66 <BR>
67
68 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
69
70 % my @inventory_items = $svc_x->inventory_item;
71 % foreach my $f ( @$fields ) {
72 %
73 %   my($field, $type, $value);
74 %   if ( ref($f) ) {
75 %     $field = $f->{'field'};
76 %     $type  = $f->{'type'} || 'text';
77 %     if ( $f->{'value_callback'} ) {
78 %       my $hack_strict_refs = \&{ $f->{'value_callback'} };
79 %       $value = &$hack_strict_refs($svc_x);
80 %     } else {
81 %       $value = exists($f->{'value'})
82 %                  ? $f->{'value'}
83 %                  : encode_entities($svc_x->$field);
84 %     }
85 %   } else {
86 %     $field = $f;
87 %     $type = 'text';
88 %     $value = encode_entities($svc_x->$field);
89 %   }
90 %
91 %   my $columndef = $part_svc->part_svc_column($field);
92 %   if ( $columndef->columnflag =~ /^[MA]$/ && $columndef->columnvalue =~ /,/ )
93 %   {
94 %     # inventory-select field with multiple classes
95 %     # show the class name to disambiguate
96 %     my ($item) = grep { $_->svc_field eq $field } @inventory_items;
97 %     my $class = qsearchs('inventory_class', { classnum => $item->classnum });
98 %     $value .= ' <i>('. $class->classname . ')</i>' if $class;
99 %   }
100 %   unless ($columndef->columnflag eq 'F' && !length($columndef->columnvalue)) {
101
102       <TR>
103         <TD ALIGN="right">
104           <% ( $opt{labels} && exists $opt{labels}->{$field} )
105                   ? $opt{labels}->{$field}
106                   : $field
107           %>
108         </TD>
109
110 %       $value = time2str($date_format,$value)
111 %         if $type eq 'date' && $value;
112 %       $value = time2str("$date_format %H:%M",$value)
113 %         if $type eq 'datetime' && $value;
114 %       $value = $value eq 'Y' ? emt('Yes') : emt('No')
115 %         if $type eq 'checkbox';
116 %       $value .= ' ('. (Net::MAC::Vendor::lookup($value))->[0]. ')'
117 %         if $type =~ /mac_addr$/ && $value =~ /\w/i;
118 %       #eventually more options for <SELECT>, etc. fields
119
120         <TD BGCOLOR="#ffffff"><% $value %><TD>
121
122       </TR>
123
124 %   }
125 %
126 % } 
127
128 % foreach (sort { $a cmp $b } $svc_x->virtual_fields) { 
129   <% $svc_x->pvf($_)->widget('HTML', 'view', $svc_x->getfield($_)) %>
130 % } 
131
132
133 </TABLE></TD></TR></TABLE>
134
135 <BR>
136
137 <& svc_devices.html,
138      'svc_x' => $svc_x,
139      'table' => $svc_x->device_table,
140 &>
141
142 % if ( defined($opt{'html_foot'}) ) {
143
144   <% ref($opt{'html_foot'})
145        ? &{ $opt{'html_foot'} }($svc_x)
146        : $opt{'html_foot'}
147   %>
148   <BR>
149
150 % }
151
152 % if ( $cust_svc ) {
153 <& /elements/table-tickets.html, object => $cust_svc &>
154 % }
155
156 <% joblisting({'svcnum'=>$svcnum}, 1) %>
157
158 <% include('/elements/footer.html') %>
159 <%init>
160
161 die "access denied"
162   unless $FS::CurrentUser::CurrentUser->access_right('View customer services');
163
164 my(%opt) = @_;
165
166 my $conf = new FS::Conf;
167 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
168
169 my $table = $opt{'table'};
170
171 my $fields = $opt{'fields'}
172              #|| [ grep { $_ ne 'svcnum' } dbdef->table($table)->columns ];
173              || [ grep { $_ ne 'svcnum' } fields($table) ];
174
175 my $svcnum;
176 if ( $cgi->param('svcnum') ) {
177   $cgi->param('svcnum') =~ /^(\d+)$/ or die "unparseable svcnum";
178   $svcnum = $1;
179 } else {
180   my($query) = $cgi->keywords;
181   $query =~ /^(\d+)$/ or die "no svcnum";
182   $svcnum = $1;
183 }
184 my $svc_x = qsearchs({
185   'select'    => $opt{'table'}.'.*',
186   'table'     => $opt{'table'},
187   'addl_from' => ' LEFT JOIN cust_svc  USING ( svcnum  ) '.
188                  ' LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
189                  ' LEFT JOIN cust_main USING ( custnum ) ',
190   'hashref'   => { 'svcnum' => $svcnum },
191   'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql(
192                             'null_right' => 'View/link unlinked services'
193                           ),
194 }) or die "Unknown svcnum $svcnum in ". $opt{'table'}. " table\n";
195
196 my $cust_svc = $svc_x->cust_svc;
197 my ($label, $value, $svcdb, $part_svc );
198 my $labels = $opt{labels}; #not -> here
199
200 if ( $cust_svc ) {
201   ($label, $value, $svcdb) = $cust_svc->label;
202
203   $part_svc = $cust_svc->part_svc;
204
205   #false laziness w/edit/svc_Common.html
206   #override default labels with service-definition labels if applicable
207   foreach my $field ( keys %$labels ) {
208     my $col = $part_svc->part_svc_column($field);
209     $labels->{$field} = $col->columnlabel if $col->columnlabel !~ /^\s*$/;
210   }
211 } else {
212   $label = "Unlinked $table";
213   $value = $svc_x->label;
214   $svcdb = $table;
215   # just to satisfy callbacks
216   $part_svc = FS::part_svc->new({ svcpart => 0, svcdb => $table });
217 }
218
219 my $pkgnum = $cust_svc->pkgnum if $cust_svc;
220
221 my($cust_pkg, $custnum);
222 if ($pkgnum) {
223   $cust_pkg = $cust_svc->cust_pkg;
224   $custnum = $cust_pkg->custnum;
225 } else {
226   $cust_pkg = '';
227   $custnum = '';
228 }
229
230 # attached routers
231 if ( my $router = qsearchs('router', { svcnum => $svc_x->svcnum }) ) {
232   push @$fields, qw(router_routername router_block);
233   $labels->{'router_routername'} = 'Attached router';
234   $labels->{'router_block'} = 'Attached address block';
235   $svc_x->set('router_routername', $router->routername);
236   my $block = qsearchs('addr_block', { routernum => $router->routernum });
237   if ( $block ) {
238     $svc_x->set('router_block', $block->cidr);
239   } else {
240     $svc_x->set('router_block', '<i>(none)</i>');
241   }
242 }
243
244 &{ $opt{'svc_callback'} }( $cgi, $svc_x, $part_svc, $cust_pkg, $fields, \%opt ) 
245     if $opt{'svc_callback'};
246 </%init>