1 <% include( 'elements/browse.html',
2 'title' => 'Package Definitions',
3 'html_init' => $html_init,
4 'html_posttotal' => $html_posttotal,
5 'name' => 'package definitions',
7 'disabled_statuspos' => 4,
9 'agent_null_right' => [ $edit, $edit_global ],
10 'agent_null_right_link' => $edit_global,
12 'query' => { 'select' => $select,
13 'table' => 'part_pkg',
15 'extra_sql' => $extra_sql,
16 'order_by' => "ORDER BY $orderby"
18 'count_query' => $count_query,
27 my $curuser = $FS::CurrentUser::CurrentUser;
29 my $edit = 'Edit package definitions';
30 my $edit_global = 'Edit global package definitions';
31 my $acl_edit = $curuser->access_right($edit);
32 my $acl_edit_global = $curuser->access_right($edit_global);
33 my $acl_config = $curuser->access_right('Configuration'); #to edit services
38 unless $acl_edit || $acl_edit_global;
40 my $conf = new FS::Conf;
41 my $taxclasses = $conf->exists('enable_taxclasses');
42 my $money_char = $conf->config('money_char') || '$';
45 my $orderby = 'pkgpart';
49 if ( $cgi->param('active') ) {
50 $orderby = 'num_active DESC';
55 #if ( $cgi->param('activeONLY') ) {
56 # push @where, ' WHERE num_active > 0 '; #XXX doesn't affect count...
59 if ( $cgi->param('recurring') ) {
60 $hash{'freq'} = { op=>'!=', value=>'0' };
61 $extra_count = " freq != '0' ";
65 if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
67 push @where, $classnum ? "classnum = $classnum"
70 $cgi->delete('classnum');
72 if ( $cgi->param('missing_recur_fee') ) {
73 push @where, "0 = ( SELECT COUNT(*) FROM part_pkg_option
74 WHERE optionname = 'recur_fee'
75 AND part_pkg_option.pkgpart = part_pkg.pkgpart
76 AND CAST( optionvalue AS NUMERIC ) > 0
80 push @where, FS::part_pkg->curuser_pkgs_sql
81 unless $acl_edit_global;
83 my $extra_sql = scalar(@where)
84 ? ( scalar(keys %hash) ? ' AND ' : ' WHERE ' ).
88 my $agentnums_sql = $curuser->agentnums_sql( 'table'=>'cust_main' );
89 my $count_cust_pkg = "
90 SELECT COUNT(*) FROM cust_pkg LEFT JOIN cust_main USING ( custnum )
91 WHERE cust_pkg.pkgpart = part_pkg.pkgpart
100 AND ( setup IS NULL OR setup = 0 )
101 AND ( cancel IS NULL OR cancel = 0 )
102 AND ( susp IS NULL OR susp = 0 )
103 ) AS num_not_yet_billed,
106 AND setup IS NOT NULL AND setup != 0
107 AND ( cancel IS NULL OR cancel = 0 )
108 AND ( susp IS NULL OR susp = 0 )
112 AND ( cancel IS NULL OR cancel = 0 )
113 AND susp IS NOT NULL AND susp != 0
117 AND cancel IS NOT NULL AND cancel != 0
123 #unless ( $cgi->param('active') ) {
125 One or more service definitions are grouped together into a package
126 definition and given pricing information. Customers purchase packages
127 rather than purchase services directly.<BR><BR>
128 <FORM METHOD="POST" ACTION="${p}edit/part_pkg.cgi">
129 <A HREF="${p}edit/part_pkg.cgi"><I>Add a new package definition</I></A>
131 !.include('/elements/select-part_pkg.html', 'element_name' => 'clone' ). qq!
132 <INPUT TYPE="submit" VALUE="Clone existing package">
138 $cgi->param('dummy', 1);
141 qq(\n<SCRIPT TYPE="text/javascript">\n).
142 "function filter_change() {".
143 " window.location = '". $cgi->self_url.
144 ";classnum=' + document.getElementById('classnum').options[document.getElementById('classnum').selectedIndex].value".
148 #restore this so pagination works
149 $cgi->param('classnum', $classnum) if length($classnum);
151 #should hide this if there aren't any classes
153 "$filter_change\n<BR>( show class: ".
154 include('/elements/select-pkg_class.html',
155 #'curr_value' => $classnum,
156 'value' => $classnum, #insist on 0 :/
157 'onchange' => 'filter_change()',
158 'pre_options' => [ '-1' => 'all',
160 'disable_empty' => 1,
164 my $recur_toggle = $cgi->param('recurring') ? 'show' : 'hide';
165 $cgi->param('recurring', $cgi->param('recurring') ^ 1 );
168 '( <A HREF="'. $cgi->self_url.'">'. "$recur_toggle one-time charges</A> )";
170 $cgi->param('recurring', $cgi->param('recurring') ^ 1 ); #put it back
174 my $link = [ $p.'edit/part_pkg.cgi?', 'pkgpart' ];
176 my @header = ( '#', 'Package', 'Comment', 'Custom' );
177 my @fields = ( 'pkgpart', 'pkg', 'comment',
178 sub{ '<B><FONT COLOR="#0000CC">'.$_[0]->custom.'</FONT></B>' }
181 my @links = ( $link, $link, '', '' );
183 unless ( 0 ) { #already showing only one class or something?
184 push @header, 'Class';
185 push @fields, sub { shift->classname || '(none)'; };
189 if ( $conf->exists('pkg-addon_classnum') ) {
190 push @header, "Add'l order class";
191 push @fields, sub { shift->addon_classname || '(none)'; };
195 tie my %plans, 'Tie::IxHash', %{ FS::part_pkg::plan_info() };
197 tie my %plan_labels, 'Tie::IxHash',
198 map { $_ => ( $plans{$_}->{'shortname'} || $plans{$_}->{'name'} ) }
201 push @header, 'Pricing';
204 my $part_pkg = shift;
205 (my $plan = $plan_labels{$part_pkg->plan} ) =~ s/ / /g;
206 my $is_recur = ( $part_pkg->freq ne '0' );
207 my @discounts = sort { $a->months <=> $b->months }
209 $part_pkg->part_pkg_discount;
219 { data =>$money_char.
220 sprintf('%.2f', $part_pkg->option('setup_fee') ),
223 { data => ( ( $is_recur ? ' setup' : ' one-time' ).
224 ( $part_pkg->option('recur_fee') == 0
225 && $part_pkg->setup_show_zero
226 ? ' (printed on invoices)'
236 ? $money_char. sprintf('%.2f ', $part_pkg->option('recur_fee'))
237 : $part_pkg->freq_pretty
239 align=> ( $is_recur ? 'right' : 'center' ),
240 colspan=> ( $is_recur ? 1 : 2 ),
243 ? { data => ( $is_recur
244 ? $part_pkg->freq_pretty.
245 ( $part_pkg->option('recur_fee') == 0
246 && $part_pkg->recur_show_zero
247 ? ' (printed on invoices)'
257 my $dst_pkg = $_->dst_pkg;
259 { data => 'Add-on: '.$dst_pkg->pkg_comment,
265 $part_pkg->bill_part_pkg_link
269 { data => '<b>Discounts</b>',
279 { data => $_->months. ':',
282 { data => $_->amount ? '$'. $_->amount : $_->percent. '%'
291 # $plan_labels{$part_pkg->plan}.'<BR>'.
292 # $money_char.sprintf('%.2f setup<BR>', $part_pkg->option('setup_fee') ).
293 # ( $part_pkg->freq ne '0'
294 # ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') )
297 # $part_pkg->freq_pretty; #.'<BR>'
301 # Agent goes here if displayed
305 if ( $acl_edit_global ) {
306 #really we just want a count, but this is fine unless someone has tons
307 my @all_agent_types = map {$_->typenum} qsearch('agent_type',{});
308 if ( scalar(@all_agent_types) > 1 ) {
309 push @header, 'Agent types';
310 my $typelink = $p. 'edit/agent_type.cgi?';
311 push @fields, sub { my $part_pkg = shift;
313 map { my $agent_type = $_->agent_type;
315 { 'data' => $agent_type->atype, #escape?
317 'link' => ( $acl_config
332 #if ( $cgi->param('active') ) {
333 push @header, 'Customer<BR>packages';
335 'not yet billed' => '009999', #teal? cyan?
336 'active' => '00CC00',
337 'suspended' => 'FF9900',
338 'cancelled' => 'FF0000',
339 #'one-time charge' => '000000',
340 'charge' => '000000',
342 my $cust_pkg_link = $p. 'search/cust_pkg.cgi?pkgpart=';
343 push @fields, sub { my $part_pkg = shift;
348 if ( $magic eq 'active' && $part_pkg->freq == 0 ) {
350 #$label = 'one-time charge',
353 $label= 'not yet billed' if $magic eq 'not_yet_billed';
357 'data' => '<B><FONT COLOR="#'. $col{$label}. '">'.
358 $part_pkg->get("num_$_").
364 ( $part_pkg->get("num_$_") != 1
365 && $label =~ /charge$/
370 'link' => ( $part_pkg->get("num_$_")
378 } (qw( not_yet_billed active suspended cancelled ))
382 { 'data' => '<FONT SIZE="-1">[ '.
383 include('/elements/popup_link.html',
385 'action' => "${p}edit/bulk-cust_pkg.html?".
386 'pkgpart='.$part_pkg->pkgpart,
387 'actionlabel' => 'Change Packages',
400 push @header, 'Taxclass';
401 push @fields, sub { shift->taxclass() || ' '; };
405 push @header, 'Plan options',
407 #'Service', 'Quan', 'Primary';
411 my $part_pkg = shift;
412 if ( $part_pkg->plan ) {
414 my %options = $part_pkg->options;
421 { 'data' => $part_pkg->format($_,$options{$_}),
426 grep { $options{$_} =~ /\S/ }
427 grep { $_ !~ /^(setup|recur)_fee$/ }
438 'data' => $part_pkg->$_(),
451 my $part_pkg = shift;
456 my $part_svc = $pkg_svc->part_svc;
457 my $svc = $part_svc->svc;
458 if ( $pkg_svc->primary_svc =~ /^Y/i ) {
459 $svc = "<B>$svc (PRIMARY)</B>";
461 $svc =~ s/ +/ /g;
465 'data' => '<B>'. $pkg_svc->quantity. '</B>',
471 'link' => ( $acl_config
472 ? $p. 'edit/part_svc.cgi?'.
479 sort { $b->primary_svc =~ /^Y/i
480 <=> $a->primary_svc =~ /^Y/i
482 $part_pkg->pkg_svc('disable_linked'=>1)
485 my $dst_pkg = $_->dst_pkg;
487 { data => 'Add-on: '.$dst_pkg->pkg_comment,
493 $part_pkg->svc_part_pkg_link
499 $align .= 'lrl'; #rr';
503 my $count_extra_sql = $extra_sql;
504 $count_extra_sql =~ s/^\s*AND /WHERE /i;
505 $extra_count = ( $count_extra_sql ? ' AND ' : ' WHERE ' ). $extra_count
507 my $count_query = "SELECT COUNT(*) FROM part_pkg $count_extra_sql $extra_count";