communigate (phase 2): rules. RT#7514
[freeside.git] / httemplate / edit / part_svc.cgi
1 <% include('/elements/header.html', "$action Service Definition",
2            menubar('View all service definitions' => "${p}browse/part_svc.cgi"),
3            #" onLoad=\"visualize()\""
4           )
5 %>
6
7 <FORM NAME="dummy">
8
9       Service Part #<% $part_svc->svcpart ? $part_svc->svcpart : "(NEW)" %>
10 <BR><BR>
11 Service  <INPUT TYPE="text" NAME="svc" VALUE="<% $hashref->{svc} %>"><BR>
12 Disable new orders <INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"<% $hashref->{disabled} eq 'Y' ? ' CHECKED' : '' %>><BR>
13 <INPUT TYPE="hidden" NAME="svcpart" VALUE="<% $hashref->{svcpart} %>">
14 <BR>
15 Service definitions are the templates for items you offer to your customers.
16 <UL><LI>svc_acct - Accounts - anything with a username (Mailboxes, PPP accounts, shell accounts, RADIUS entries for broadband, etc.)
17     <LI>svc_domain - Domains
18     <LI>svc_forward - Mail forwarding
19     <LI>svc_mailinglist - Mailing list
20     <LI>svc_www - Virtual domain website
21     <LI>svc_broadband - Broadband/High-speed Internet service (always-on)
22     <LI>svc_phone - Customer phone numbers
23     <LI>svc_pbx - Customer PBXs
24     <LI>svc_external - Externally-tracked service
25 <!--   <LI>svc_charge - One-time charges (Partially unimplemented)
26        <LI>svc_wo - Work orders (Partially unimplemented)
27 -->
28 </UL>
29 For the selected table, you can give fields default or fixed (unchangable)
30 values, or select an inventory class to manually or automatically fill in
31 that field.
32 <BR><BR>
33
34 % #YUCK.  false laziness w/part_svc.pm.  go away virtual fields, please
35 % my %vfields;
36 % foreach my $svcdb ( FS::part_svc->svc_tables() ) {
37 %   eval "use FS::$svcdb;";
38 %   my $self = "FS::$svcdb"->new;
39 %   $vfields{$svcdb} = {};
40 %   foreach my $field ($self->virtual_fields) { # svc_Common::virtual_fields with a null svcpart returns all of them
41 %     my $pvf = $self->pvf($field);
42 %     $vfields{$svcdb}->{$field} = $pvf;
43 %     #warn "\$vfields{$svcdb}->{$field} = $pvf";
44 %   } #next $field
45 % } #next $svcdb
46 %
47 %  #code duplication w/ edit/part_svc.cgi, should move this hash to part_svc.pm
48 %  # and generalize the subs
49 %  # condition sub is tested to see whether to disable display of this choice
50 %  # params: ( $def, $layer, $field )  (see SUB below)
51 %  my $inv_sub = sub {
52 %                      $_[0]->{disable_inventory}
53 %                        || $_[0]->{'type'} ne 'text'
54 %                    };
55 %  tie my %flag, 'Tie::IxHash',
56 %    ''  => { 'desc' => 'No default', },
57 %    'D' => { 'desc' => 'Default',
58 %             'condition' =>
59 %               sub { $_[0]->{disable_default} }, 
60 %           },
61 %    'F' => { 'desc' => 'Fixed (unchangeable)',
62 %             'condition' =>
63 %               sub { $_[0]->{disable_fixed} }, 
64 %           },
65 %    'S' => { 'desc' => 'Selectable Choice',
66 %             'condition' =>
67 %               sub { !ref($_[0]) || $_[0]->{disable_select} }, 
68 %           },
69 %    'M' => { 'desc' => 'Manual selection from inventory',
70 %             'condition' => $inv_sub,
71 %           },
72 %    'A' => { 'desc' => 'Automatically fill in from inventory',
73 %             'condition' => $inv_sub,
74 %           },
75 %    'X' => { 'desc' => 'Excluded',
76 %             'condition' =>
77 %               sub { ! $vfields{$_[1]}->{$_[2]} },
78 %
79 %           },
80 %  ;
81 %  
82 %  my @dbs = $hashref->{svcdb}
83 %             ? ( $hashref->{svcdb} )
84 %             : FS::part_svc->svc_tables();
85 %
86 %  tie my %svcdb, 'Tie::IxHash', map { $_=>$_ } grep dbdef->table($_), @dbs;
87 %  my $widget = new HTML::Widgets::SelectLayers(
88 %    #'selected_layer' => $p_svcdb,
89 %    'selected_layer' => $hashref->{svcdb} || 'svc_acct',
90 %    'options'        => \%svcdb,
91 %    'form_name'      => 'dummy',
92 %    #'form_action'    => 'process/part_svc.cgi',
93 %    'form_action'    => 'part_svc.cgi', #self
94 %    'form_text'      => [ qw( svc svcpart ) ],
95 %    'form_checkbox'  => [ 'disabled' ],
96 %    'layer_callback' => sub {
97 %      my $layer = shift;
98 %      
99 %      my $html = qq!<INPUT TYPE="hidden" NAME="svcdb" VALUE="$layer">!;
100 %
101 %      my $columns = 3;
102 %      my $count = 0;
103 %      my @part_export =
104 %        map { qsearch( 'part_export', {exporttype => $_ } ) }
105 %          keys %{FS::part_export::export_info($layer)};
106 %      $html .= '<BR><BR>'. table(). 
107 %               "<TR><TH COLSPAN=$columns>Exports</TH></TR><TR>";
108 %      foreach my $part_export ( @part_export ) {
109 %        $html .= '<TD><INPUT TYPE="checkbox"'.
110 %                 ' NAME="exportnum'. $part_export->exportnum. '"  VALUE="1" ';
111 %        $html .= 'CHECKED'
112 %          if ( $clone || $part_svc->svcpart ) #null svcpart search causing error
113 %              && qsearchs( 'export_svc', {
114 %                                   exportnum => $part_export->exportnum,
115 %                                   svcpart   => $clone || $part_svc->svcpart });
116 %        $html .= '>'. $part_export->exportnum. ': '. $part_export->exporttype.
117 %                 ' to '. $part_export->machine. '</TD>';
118 %        $count++;
119 %        $html .= '</TR><TR>' unless $count % $columns;
120 %      }
121 %      $html .= '</TR></TABLE><BR><BR>';
122 %
123 %      $html .= include('/elements/table-grid.html', 'cellpadding' => 4 ).
124 %               '<TR>'.
125 %                 '<TH CLASS="grid" BGCOLOR="#cccccc">Field</TH>'.
126 %                 '<TH CLASS="grid" BGCOLOR="#cccccc">Label</TH>'.
127 %                 '<TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN=2>Modifier</TH>'.
128 %               '</TR>';
129 %
130 %      my $bgcolor1 = '#eeeeee';
131 %      my $bgcolor2 = '#ffffff';
132 %      my $bgcolor;
133 %
134 %      #yucky kludge
135 %      my @fields = defined( dbdef->table($layer) )
136 %                      ? grep {
137 %                               $_ ne 'svcnum' &&
138 %                               ( !FS::part_svc->svc_table_fields($layer)
139 %                                     ->{$_}->{disable_part_svc_column}   ||
140 %                                 $part_svc->part_svc_column($_)->columnflag
141 %                               )
142 %                             }
143 %                             fields($layer)
144 %                      : ();
145 %      push @fields, 'usergroup' if $layer eq 'svc_acct'; #kludge
146 %      $part_svc->svcpart($clone) if $clone; #haha, undone below
147 %
148 %
149 %      foreach my $field (@fields) {
150 %
151 %        #a few lines of false laziness w/browse/part_svc.cgi
152 %        my $def = FS::part_svc->svc_table_fields($layer)->{$field};
153 %        my $def_info  = $def->{'def_info'};
154 %        my $formatter = $def->{'format'} || sub { shift };
155 %
156 %        my $part_svc_column = $part_svc->part_svc_column($field);
157 %        my $label = $part_svc_column->columnlabel || $def->{'label'};
158 %        my $value = &$formatter($part_svc_column->columnvalue);
159 %        my $flag  = $part_svc_column->columnflag;
160 %
161 %        if ( $bgcolor eq $bgcolor1 ) {
162 %          $bgcolor = $bgcolor2;
163 %        } else {
164 %          $bgcolor = $bgcolor1;
165 %        }
166 %        
167 %        $html .= qq!<TR><TD ROWSPAN=2 CLASS="grid" BGCOLOR="$bgcolor" ALIGN="right">!.
168 %                 ( $def->{'label'} || $field ).
169 %                 "</TD>";
170 %
171 %        $html .= qq!<TD ROWSPAN=2 CLASS="grid" BGCOLOR="$bgcolor"><INPUT NAME="${layer}__${field}_label" VALUE="!. encode_entities($label). '" STYLE="text-align:right"></TD>';
172 %
173 %        $flag = '' if $def->{type} eq 'disabled';
174 %
175 %        $html .= qq!<TD CLASS="grid" BGCOLOR="$bgcolor">!;
176 %
177 %        if ( $def->{type} eq 'disabled' ) {
178 %        
179 %          $html .= 'No default';
180 %
181 %        } else {
182 %
183 %          $html .= qq!<SELECT NAME="${layer}__${field}_flag"!.
184 %                      qq! onChange="${layer}__${field}_flag_changed(this)">!;
185 %
186 %          foreach my $f ( keys %flag ) {
187 %
188 %            # need to template-ize more httemplate/edit/svc_* first
189 %            next if $f eq 'M' and $layer !~ /^svc_(broadband|external|phone)$/;
190 %
191 %            #here is where the SUB from above is called, to skip some choices
192 %            next if $flag{$f}->{condition}
193 %                 && &{ $flag{$f}->{condition} }( $def, $layer, $field );
194 %
195 %            $html .= qq!<OPTION VALUE="$f"!.
196 %                     ' SELECTED'x($flag eq $f ).
197 %                     '>'. $flag{$f}->{desc};
198 %
199 %          }
200 %
201 %          $html .= '</SELECT>';
202 %
203 %          $html .= join("\n",
204 %            '<SCRIPT>',
205 %            "  function ${layer}__${field}_flag_changed(what) {",
206 %            '    var f = what.options[what.selectedIndex].value;',
207 %            '    if ( f == "" || f == "X" ) { //disable',
208 %            "      what.form.${layer}__${field}.disabled = true;".
209 %            "      what.form.${layer}__${field}.style.backgroundColor = '#dddddd';".
210 %            "      if ( what.form.${layer}__${field}_classnum ) {".
211 %            "        what.form.${layer}__${field}_classnum.disabled = true;".
212 %            "        what.form.${layer}__${field}_classnum.style.backgroundColor = '#dddddd';".
213 %            "      }".
214 %            '    } else if ( f == "D" || f == "F" || f =="S" ) { //enable, text box',
215 %            "      what.form.${layer}__${field}.disabled = false;".
216 %            "      what.form.${layer}__${field}.style.backgroundColor = '#ffffff';".
217 %            "      if ( f == 'S' || '${field}' == 'usergroup' ) {". # kludge
218 %            "        what.form.${layer}__${field}.multiple = true;".
219 %            "      } else {".
220 %            "        what.form.${layer}__${field}.multiple = false;".
221 %            "      }".
222 %            "      what.form.${layer}__${field}.style.display = '';".
223 %            "      if ( what.form.${layer}__${field}_classnum ) {".
224 %            "        what.form.${layer}__${field}_classnum.disabled = false;".
225 %            "        what.form.${layer}__${field}_classnum.style.backgroundColor = '#ffffff';".
226 %            "        what.form.${layer}__${field}_classnum.style.display = 'none';".
227 %            "      }".
228 %            '    } else if ( f == "M" || f == "A" ) { //enable, inventory',
229 %            "      what.form.${layer}__${field}.disabled = false;".
230 %            "      what.form.${layer}__${field}.style.backgroundColor = '#ffffff';".
231 %            "      what.form.${layer}__${field}.style.display = 'none';".
232 %            "      if ( what.form.${layer}__${field}_classnum ) {".
233 %            "        what.form.${layer}__${field}_classnum.disabled = false;".
234 %            "        what.form.${layer}__${field}_classnum.style.backgroundColor = '#ffffff';".
235 %            "        what.form.${layer}__${field}_classnum.style.display = '';".
236 %            "      }".
237 %            '    }',
238 %            '  }',
239 %            '</SCRIPT>',
240 %          );
241 %
242 %        }
243 %
244 %        $html .= qq!</TD><TD CLASS="grid" BGCOLOR="$bgcolor">!;
245 %
246 %        my $disabled = $flag ? ''
247 %                             : 'DISABLED STYLE="background-color: #dddddd"';
248 %
249 %        if ( !$def->{type} || $def->{type} eq 'text' ) {
250 %
251 %          my $nodisplay = ' STYLE="display:none"';
252 %          my $is_inv = ( $flag =~ /^[MA]$/ );
253 %
254 %          $html .=
255 %            qq!<INPUT TYPE="text" NAME="${layer}__${field}" VALUE="$value" !.
256 %            $disabled.
257 %            ( $is_inv ? $nodisplay : $disabled ).
258 %            '>';
259 %
260 %          $html .= include('/elements/select-table.html',
261 %                             'element_name' => "${layer}__${field}_classnum",
262 %                             'element_etc'  => ( $is_inv
263 %                                                   ? $disabled
264 %                                                   : $nodisplay
265 %                                               ),
266 %                             'table'        => 'inventory_class',
267 %                             'name_col'     => 'classname',
268 %                             'value'        => $value,
269 %                             'empty_label'  => 'Select inventory class',
270 %                          );
271 %
272 %        } elsif ( $def->{type} eq 'checkbox' ) {
273 %
274 %          $html .= include('/elements/checkbox.html',
275 %                             'field'      => $layer.'__'.$field,
276 %                             'curr_value' => $value,
277 %                             'value'      => 'Y',
278 %                          );
279 %
280 %        } elsif ( $def->{type} eq 'select' ) {
281 %
282 %          $html .= qq!<SELECT NAME="${layer}__${field}" $disabled!;
283 %          $html .= ' MULTIPLE' if $flag eq 'S';
284 %          $html .= '>';
285 %          $html .= '<OPTION> </OPTION>' unless $value;
286 %          if ( $def->{select_table} ) {
287 %            foreach my $record ( qsearch( $def->{select_table}, {} ) ) {
288 %              my $rvalue = $record->getfield($def->{select_key});
289 %              my $select_label = $def->{select_label};
290 %              $html .= qq!<OPTION VALUE="$rvalue"!.
291 %                  (grep(/^$rvalue$/, split(',',$value)) ? ' SELECTED>' : '>' ).
292 %                  $record->$select_label(). '</OPTION>';
293 %            } #next $record
294 %          } else { # select_list
295 %            foreach my $item ( @{$def->{select_list}} ) {
296 %              $html .= qq!<OPTION VALUE="$item"!.
297 %                    (grep(/^$item$/, split(',',$value)) ? ' SELECTED>' : '>' ).
298 %                    $item. '</OPTION>';
299 %            } #next $item
300 %          } #endif
301 %          $html .= '</SELECT>';
302 %
303 %        } elsif ( $def->{type} eq 'textarea' ) {
304 %
305 %          $html .=
306 %            qq!<TEXTAREA NAME="${layer}__${field}">!. encode_entities($value).
307 %            '</TEXTAREA>';
308 %
309 %        } elsif ( $def->{type} eq 'select-svc_pbx.html' ) {
310 %
311 %          $html .= include('/elements/select-svc_pbx.html',
312 %                             'curr_value'   => $value,
313 %                             'element_name' => "${layer}__${field}",
314 %                             'element_etc'  => $disabled,
315 %                             'multiple'     => ($flag eq 'S'),
316 %                          );
317 %
318 %        } elsif ( $def->{type} eq 'radius_usergroup_selector' ) {
319 %
320 %          #XXX disable the RADIUS usergroup selector?  ugh it sure does need
321 %          #an overhaul, people have dum group problems because of it
322 %
323 %          $html .= FS::svc_acct::radius_usergroup_selector(
324 %            [ split(',', $value) ], "${layer}__${field}" );
325 %
326 %        } elsif ( $def->{type} eq 'communigate_pro-accessmodes' ) {
327 %
328 %          $html .= include('/elements/communigate_pro-accessmodes.html',
329 %                             'element_name_prefix' => "${layer}__${field}_",
330 %                             'curr_value'          => $value,
331 %                             #doesn't work#'element_etc'  => $disabled,
332 %                          );
333 %
334 %        } elsif ( $def->{type} eq 'disabled' ) {
335 %
336 %          $html .=
337 %            qq!<INPUT TYPE="hidden" NAME="${layer}__${field}" VALUE="">!;
338 %
339 %        } else {
340 %
341 %          $html .= '<font color="#ff0000">unknown type '. $def->{type};
342 %
343 %        }
344 %
345 %        $html .= "</TD></TR>\n";
346
347 %        $def_info = "($def_info)" if $def_info;
348 %        $html .=
349 %          qq!<TR>!.
350 %          qq!  <TD COLSPAN=2 BGCOLOR="$bgcolor" ALIGN="center" !.
351 %          qq!      STYLE="padding:0; border-top: none">!.
352 %          qq!    <FONT SIZE="-1"><I>$def_info</I></FONT>!.
353 %          qq!  </TD>!.
354 %          qq!</TR>\n!;
355 %
356 %      } #foreach my $field (@fields) {
357 %
358 %      $part_svc->svcpart('') if $clone; #undone
359 %      $html .= "</TABLE>";
360 %
361 %      $html .= include('/elements/progress-init.html',
362 %                         $layer, #form name
363 %                         [ qw(svc svcpart disabled exportnum), @fields ],
364 %                         'process/part_svc.cgi',
365 %                         $p.'browse/part_svc.cgi',
366 %                         $layer,
367 %                      );
368 %      $html .= '<BR><INPUT NAME="submit" TYPE="button" VALUE="'.
369 %               ($hashref->{svcpart} ? 'Apply changes' : 'Add service'). '" '.
370 %               ' onClick="document.'. "$layer.submit.disabled=true; ".
371 %               "fixup(document.$layer); $layer". 'process();">';
372 %
373 %      #$html .= '<BR><INPUT TYPE="submit" VALUE="'.
374 %      #         ($hashref->{svcpart} ? 'Apply changes' : 'Add service'). '">';
375 %
376 %      $html;
377 %
378 %    },
379 %  );
380 %
381 %
382
383 Table <% $widget->html %>
384
385 <% include('/elements/footer.html') %>
386
387 <%init>
388
389 die "access denied"
390   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
391
392 my $part_svc;
393 my $clone = '';
394 if ( $cgi->param('clone') && $cgi->param('clone') =~ /^(\d+)$/ ) {#clone
395   #$cgi->param('clone') =~ /^(\d+)$/ or die "malformed query: $query";
396   $part_svc = qsearchs('part_svc', { 'svcpart'=>$1 } )
397     or die "unknown svcpart: $1";
398   $clone = $part_svc->svcpart;
399   $part_svc->svcpart('');
400 } elsif ( $cgi->keywords ) { #edit
401   my($query) = $cgi->keywords;
402   $query =~ /^(\d+)$/ or die "malformed query: $query";
403   $part_svc=qsearchs('part_svc', { 'svcpart'=>$1 } )
404     or die "unknown svcpart: $1";
405 } else { #adding
406   $part_svc = new FS::part_svc {};
407 }
408
409 my $action = $part_svc->svcpart ? 'Edit' : 'Add';
410 my $hashref = $part_svc->hashref;
411 #   my $p_svcdb = $part_svc->svcdb || 'svc_acct';
412
413
414
415 </%init>
416
417
418