svc_conferencing, RT#24389
[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 = encode_entities($svc_x->$field);
82 %     }
83 %   } else {
84 %     $field = $f;
85 %     $type = 'text';
86 %     $value = encode_entities($svc_x->$field);
87 %   }
88 %
89 %   my $columndef = $part_svc->part_svc_column($field);
90 %   if ( $columndef->columnflag =~ /^[MA]$/ && $columndef->columnvalue =~ /,/ )
91 %   {
92 %     # inventory-select field with multiple classes
93 %     # show the class name to disambiguate
94 %     my ($item) = grep { $_->svc_field eq $field } @inventory_items;
95 %     my $class = qsearchs('inventory_class', { classnum => $item->classnum });
96 %     $value .= ' <i>('. $class->classname . ')</i>' if $class;
97 %   }
98 %   unless ($columndef->columnflag eq 'F' && !length($columndef->columnvalue)) {
99
100       <TR>
101         <TD ALIGN="right">
102           <% ( $opt{labels} && exists $opt{labels}->{$field} )
103                   ? $opt{labels}->{$field}
104                   : $field
105           %>
106         </TD>
107
108 %       $value = time2str($date_format,$value) if ( $type eq 'date' && $value );
109 %       $value = time2str("$date_format %H:%M",$value) if ( $type eq 'datetime' && $value );
110 %       $value = $value eq 'Y' ? emt('Yes') : emt('No') if ( $type eq 'checkbox' );
111 %       #eventually more options for <SELECT>, etc. fields
112
113         <TD BGCOLOR="#ffffff"><% $value %><TD>
114
115       </TR>
116
117 %   }
118 %
119 % } 
120
121 % foreach (sort { $a cmp $b } $svc_x->virtual_fields) { 
122   <% $svc_x->pvf($_)->widget('HTML', 'view', $svc_x->getfield($_)) %>
123 % } 
124
125
126 </TABLE></TD></TR></TABLE>
127
128 <BR>
129
130 <& svc_devices.html,
131      'svc_x' => $svc_x,
132      'table' => $svc_x->device_table,
133 &>
134
135 % if ( defined($opt{'html_foot'}) ) {
136
137   <% ref($opt{'html_foot'})
138        ? &{ $opt{'html_foot'} }($svc_x)
139        : $opt{'html_foot'}
140   %>
141   <BR>
142
143 % }
144
145 % if ( $cust_svc ) {
146 <& /elements/table-tickets.html, object => $cust_svc &>
147 % }
148
149 <% joblisting({'svcnum'=>$svcnum}, 1) %>
150
151 <% include('/elements/footer.html') %>
152 <%init>
153
154 die "access denied"
155   unless $FS::CurrentUser::CurrentUser->access_right('View customer services');
156
157 my(%opt) = @_;
158
159 my $conf = new FS::Conf;
160 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
161
162 my $table = $opt{'table'};
163
164 my $fields = $opt{'fields'}
165              #|| [ grep { $_ ne 'svcnum' } dbdef->table($table)->columns ];
166              || [ grep { $_ ne 'svcnum' } fields($table) ];
167
168 my $svcnum;
169 if ( $cgi->param('svcnum') ) {
170   $cgi->param('svcnum') =~ /^(\d+)$/ or die "unparseable svcnum";
171   $svcnum = $1;
172 } else {
173   my($query) = $cgi->keywords;
174   $query =~ /^(\d+)$/ or die "no svcnum";
175   $svcnum = $1;
176 }
177 my $svc_x = qsearchs({
178   'select'    => $opt{'table'}.'.*',
179   'table'     => $opt{'table'},
180   'addl_from' => ' LEFT JOIN cust_svc  USING ( svcnum  ) '.
181                  ' LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
182                  ' LEFT JOIN cust_main USING ( custnum ) ',
183   'hashref'   => { 'svcnum' => $svcnum },
184   'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql(
185                             'null_right' => 'View/link unlinked services'
186                           ),
187 }) or die "Unknown svcnum $svcnum in ". $opt{'table'}. " table\n";
188
189 my $cust_svc = $svc_x->cust_svc;
190 my ($label, $value, $svcdb, $part_svc );
191 my $labels = $opt{labels}; #not -> here
192
193 if ( $cust_svc ) {
194   ($label, $value, $svcdb) = $cust_svc->label;
195
196   $part_svc = $cust_svc->part_svc;
197
198   #false laziness w/edit/svc_Common.html
199   #override default labels with service-definition labels if applicable
200   foreach my $field ( keys %$labels ) {
201     my $col = $part_svc->part_svc_column($field);
202     $labels->{$field} = $col->columnlabel if $col->columnlabel !~ /^\s*$/;
203   }
204 } else {
205   $label = "Unlinked $table";
206   $value = $svc_x->label;
207   $svcdb = $table;
208   # just to satisfy callbacks
209   $part_svc = FS::part_svc->new({ svcpart => 0, svcdb => $table });
210 }
211
212 my $pkgnum = $cust_svc->pkgnum if $cust_svc;
213
214 my($cust_pkg, $custnum);
215 if ($pkgnum) {
216   $cust_pkg = $cust_svc->cust_pkg;
217   $custnum = $cust_pkg->custnum;
218 } else {
219   $cust_pkg = '';
220   $custnum = '';
221 }
222
223 # attached routers
224 if ( my $router = qsearchs('router', { svcnum => $svc_x->svcnum }) ) {
225   push @$fields, qw(router_routername router_block);
226   $labels->{'router_routername'} = 'Attached router';
227   $labels->{'router_block'} = 'Attached address block';
228   $svc_x->set('router_routername', $router->routername);
229   my $block = qsearchs('addr_block', { routernum => $router->routernum });
230   if ( $block ) {
231     $svc_x->set('router_block', $block->cidr);
232   } else {
233     $svc_x->set('router_block', '<i>(none)</i>');
234   }
235 }
236
237 &{ $opt{'svc_callback'} }( $cgi, $svc_x, $part_svc, $cust_pkg, $fields, \%opt ) 
238     if $opt{'svc_callback'};
239 </%init>