Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / browse / part_svc.cgi
1 <% include('/elements/header.html', 'Service Definition Listing') %>
2
3 <SCRIPT>
4 function part_export_areyousure(href) {
5   if (confirm("Are you sure you want to delete this export?") == true)
6     window.location.href = href;
7 }
8 </SCRIPT>
9
10     Service definitions are the templates for items you offer to your customers.<BR><BR>
11
12 <FORM METHOD="POST" ACTION="<% $p %>edit/part_svc.cgi">
13 <A HREF="<% $p %>edit/part_svc.cgi"><I>Add a new service definition</I></A>
14 % if ( @part_svc ) { 
15 &nbsp;or&nbsp;<SELECT NAME="clone"><OPTION></OPTION>
16 % foreach my $part_svc ( @part_svc ) { 
17
18   <OPTION VALUE="<% $part_svc->svcpart %>"><% $part_svc->svc %></OPTION>
19 % } 
20
21 </SELECT><INPUT TYPE="submit" VALUE="Clone existing service">
22 % } 
23
24 </FORM><BR>
25
26 <% $total %> service definitions
27 <% $cgi->param('showdisabled')
28       ? do { $cgi->param('showdisabled', 0);
29              '( <a href="'. $cgi->self_url. '">hide disabled services</a> )'; }
30       : do { $cgi->param('showdisabled', 1);
31              '( <a href="'. $cgi->self_url. '">show disabled services</a> )'; }
32 %>
33 % $cgi->param('showdisabled', ( 1 ^ $cgi->param('showdisabled') ) ); 
34
35 <% include('/elements/table-grid.html') %>
36 %   my $bgcolor1 = '#eeeeee';
37 %   my $bgcolor2 = '#ffffff';
38 %   my $bgcolor = '';
39
40   <TR>
41
42     <TH CLASS="grid" BGCOLOR="#cccccc"><A HREF="<% do { $cgi->param('orderby', 'svcpart'); $cgi->self_url } %>">#</A></TH>
43
44 % if ( $cgi->param('showdisabled') ) { 
45       <TH CLASS="grid" BGCOLOR="#cccccc">Status</TH>
46 % } 
47
48     <TH CLASS="grid" BGCOLOR="#cccccc"><A HREF="<% do { $cgi->param('orderby', 'svc'); $cgi->self_url; } %>">Service</A></TH>
49
50     <TH CLASS="grid" BGCOLOR="#cccccc">Table</TH>
51
52     <TH CLASS="grid" BGCOLOR="#cccccc"><A HREF="<% do { $cgi->param('orderby', 'active'); $cgi->self_url; } %>"><FONT SIZE=-1>Customer<BR>Services</FONT></A></TH>
53
54     <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>Customer<BR>Self-service</FONT></TH>
55
56     <TH CLASS="grid" BGCOLOR="#cccccc">Export</TH>
57
58     <TH CLASS="grid" BGCOLOR="#cccccc">Field</TH>
59
60     <TH CLASS="grid" BGCOLOR="#cccccc">Label</TH>
61
62     <TH COLSPAN=2 CLASS="grid" BGCOLOR="#cccccc">Modifier</TH>
63
64     <TH CLASS="grid" BGCOLOR="#cccccc" STYLE="font-size: smaller;">Required</TH>
65
66   </TR>
67 % my $conf = FS::Conf->new;
68 % foreach my $part_svc ( @part_svc ) {
69 %     my $svcdb = $part_svc->svcdb;
70 %     my $svc_x = "FS::$svcdb"->new( { svcpart => $part_svc->svcpart } );
71 %     my @dfields = $svc_x->fields;
72 %     push @dfields, 'usergroup' if $svcdb eq 'svc_acct' #double kludge
73 %                                or ($svcdb eq 'svc_broadband' 
74 %                                    and $conf->exists('svc_broadband-radius'));
75 %     my @fields =
76 %       grep { my $col = $part_svc->part_svc_column($_);
77 %              my $def = FS::part_svc->svc_table_fields($svcdb)->{$_};
78 %              $svc_x->pvf($_)
79 %              or $_ ne 'svcnum' && (
80 %                $col->columnflag || ( $col->columnlabel !~ /^\S*$/
81 %                                      && $col->columnlabel ne $def->{'label'}
82 %                                    )
83 %                                 || ( $col->required
84 %                                      && !$def->{'required'}
85 %                                    )
86 %              )
87 %            }
88 %            @dfields ;
89 %     my $rowspan = scalar(@fields) || 1;
90 %     $rowspan++ if $part_svc->restrict_edit_password;
91 %     my $url = "${p}edit/part_svc.cgi?". $part_svc->svcpart;
92 %
93 %     if ( $bgcolor eq $bgcolor1 ) {
94 %       $bgcolor = $bgcolor2;
95 %     } else {
96 %       $bgcolor = $bgcolor1;
97 %     }
98
99
100   <TR>
101
102     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>">
103       <A HREF="<% $url %>"><% $part_svc->svcpart %></A>
104     </TD>
105
106 % if ( $cgi->param('showdisabled') ) { 
107     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>">
108       <% $part_svc->disabled
109             ? '<FONT COLOR="#FF0000"><B>Disabled</B></FONT>'
110             : '<FONT COLOR="#00CC00"><B>Enabled</B></FONT>'
111       %>
112     </TD>
113 % } 
114
115     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>"><A HREF="<% $url %>">
116       <% $part_svc->svc %></A></TD>
117
118     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>">
119       <% $svcdb %></TD>
120
121     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>">
122       <FONT COLOR="#00CC00"><B><% $num_active_cust_svc{$part_svc->svcpart} %></B></FONT>&nbsp;<% $num_active_cust_svc{$part_svc->svcpart} ? svc_url( 'ahref' => 1, 'm' => $m, 'action' => 'search', 'part_svc' => $part_svc, 'query' => "svcpart=". $part_svc->svcpart ) : '<A NAME="zero">' %>active</A>
123
124 % if ( $num_active_cust_svc{$part_svc->svcpart} ) { 
125         <BR><FONT SIZE="-1">[ <A HREF="<%$p%>edit/bulk-cust_svc.html?svcpart=<% $part_svc->svcpart %>">change</A> ]</FONT>
126 % } 
127
128     </TD>
129
130 % tie my %selfservice_access, 'Tie::IxHash', #false laziness w/edit/part_svc.cgi
131 %   ''         => 'Yes',
132 %   'hidden'   => 'Hidden',
133 %   'readonly' => 'Read-only',
134 % ;
135     <TD ROWSPAN=<% $rowspan %> CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="center">
136       <% $selfservice_access{$part_svc->selfservice_access} %></TD>
137
138     <TD ROWSPAN=<% $rowspan %> CLASS="inv" BGCOLOR="<% $bgcolor %>">
139       <TABLE CLASS="inv">
140 %
141 %#  my @part_export =
142 %map { qsearchs('part_export', { exportnum => $_->exportnum } ) } qsearch('export_svc', { svcpart => $part_svc->svcpart } ) ;
143 %  foreach my $part_export (
144 %    map { qsearchs('part_export', { exportnum => $_->exportnum } ) } 
145 %      qsearch('export_svc', { svcpart => $part_svc->svcpart } )
146 %  ) {
147 %
148
149         <TR>
150           <TD><A HREF="<% $p %>edit/part_export.cgi?<% $part_export->exportnum %>"><% $part_export->label_html %></A></TD>
151         </TR>
152 %  } 
153
154       </TABLE>
155     </TD>
156
157 %     unless ( @fields ) {
158 %       for ( 1..5 ) {  
159           <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"</TD>
160 %       }
161 %     }
162 %   
163 %     my($n1)='';
164 %     foreach my $field ( @fields ) {
165 %
166 %       #a few lines of false laziness w/edit/part_svc.cgi
167 %       my $def = FS::part_svc->svc_table_fields($svcdb)->{$field};
168 %       my $formatter = $def->{format} || sub { shift };
169 %
170 %       my $part_svc_column = $part_svc->part_svc_column($field);
171 %       my $label = $part_svc_column->columnlabel || $def->{'label'};
172 %       my $flag = $part_svc_column->columnflag;
173
174      <% $n1 %>
175      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $field %></TD>
176      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $label %></TD>
177      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $flag{$flag} %></TD>
178      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
179 % my $value = &$formatter($part_svc->part_svc_column($field)->columnvalue);
180 % if ( $flag =~ /^[MAH]$/ ) { 
181 %   my $select_table = ($flag eq 'H') ? 'hardware_class' : 'inventory_class';
182 %   foreach my $classnum ( split(',', $value) ) {
183 %     $select_class{$classnum} =
184 %       qsearchs($select_table, { 'classnum' => $classnum } );
185
186       <% $select_class{$classnum}
187             ? $select_class{$classnum}->classname
188             : "WARNING: $select_table.classnum $classnum not found" %><BR>
189 %   }
190 % } else { 
191
192             <% $value %>
193 % }
194
195      </TD>
196      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
197 % if ($part_svc_column->required) {
198        Yes
199 % }
200      </TD>
201 %     $n1="</TR><TR>";
202 %     } #foreach $field
203 %   if ( $part_svc->restrict_edit_password ) {
204    <TR>
205      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" COLSPAN=4 ALIGN="left">
206       <B><% emt('Password editing restricted.') %></B>
207      </TD>
208    </TR>
209 %   }
210
211   </TR>
212 % }  #foreach $part_svc
213
214 </TABLE>
215 </BODY>
216 </HTML>
217 <%init>
218  
219 die "access denied"
220   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
221
222 #code duplication w/ edit/part_svc.cgi, should move this hash to part_svc.pm
223 my %flag = (
224   ''  => '',
225   'D' => 'Default',
226   'F' => 'Fixed (unchangeable)',
227   'S' => 'Selectable choice',
228   #'M' => 'Manual selection from inventory',
229   'M' => 'Manual selected from inventory',
230   #'A' => 'Automatically fill in from inventory',
231   'A' => 'Automatically filled in from inventory',
232   'H' => 'Selected from hardware class',
233   'X' => 'Excluded',
234 );
235
236 my %search;
237 if ( $cgi->param('showdisabled') ) {
238   %search = ();
239 } else {
240   %search = ( 'disabled' => '' );
241 }
242
243 my @part_svc =
244   sort { $a->getfield('svcpart') <=> $b->getfield('svcpart') }
245     qsearch('part_svc', \%search );
246 my $total = scalar(@part_svc);
247
248 my %num_active_cust_svc = map { $_->svcpart => $_->num_cust_svc } @part_svc;
249
250 if ( $cgi->param('orderby') eq 'active' ) {
251   @part_svc = sort { $num_active_cust_svc{$b->svcpart} <=>
252                      $num_active_cust_svc{$a->svcpart}     } @part_svc;
253 } elsif ( $cgi->param('orderby') eq 'svc' ) { 
254   @part_svc = sort { lc($a->svc) cmp lc($b->svc) } @part_svc;
255 }
256
257 my %select_class = ();
258
259 </%init>