debug
[freeside.git] / httemplate / view / cust_main / packages / section.html
1 % if ( @$packages ) { 
2 <TR>
3 % #my $width = $show_location ? 'WIDTH="25%"' : 'WIDTH="33%"';
4   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Package') |h %></TH>
5   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Status') |h %></TH>
6 %   if ( $show_location ) {
7   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Location') |h %></TH>
8 % }
9   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Services') |h %></TH>
10 </TR>
11
12 % #$FS::cust_pkg::DEBUG = 2;
13 %   foreach my $cust_pkg (@$packages) {
14     <& .packagerow, $cust_pkg,
15         'cust_main' => $opt{'cust_main'},
16         %conf_opt
17     &>
18 %   }
19 % } else { # there are no packages
20 <BR>
21 % }
22 <%def .packagerow>
23 %
24 % my ($cust_pkg, %iopt) = @_;
25 % $iopt{'cust_pkg'} = $cust_pkg;
26 % $iopt{'part_pkg'} = $cust_pkg->part_pkg;
27   <!--pkgnum: <% $cust_pkg->pkgnum %>-->
28   <TR CLASS="row<%$row % 2%>">
29     <& package.html, %iopt &>
30     <& status.html, %iopt &>
31 %     if ( $iopt{'show_location'} ) {
32     <& location.html, %iopt &>
33 %     }
34     <& services.html, %iopt &>
35   </TR>
36 % $row++;
37 % # include supplemental packages if any
38 % $iopt{'supplemental'} = ($iopt{'supplemental'} || 0) + 1;
39 % foreach my $supp_pkg ($cust_pkg->supplemental_pkgs) {
40     <& .packagerow, $supp_pkg, %iopt &>
41 % }
42 </%def>
43 <%shared>
44 my $row = 0;
45 </%shared>
46 <%init>
47
48 my %opt = @_;
49 my $conf = new FS::Conf;
50
51 my $curuser = $FS::CurrentUser::CurrentUser;
52
53 my $packages = $opt{'packages'};
54 my $show_location = $opt{'show_location'};
55
56 # Sort order is hardcoded for now, can change this if needed.
57 @$packages = sort { 
58   ( $a->getfield('cancel') <=> $b->getfield('cancel') )  or
59   ( $a->getfield('setup')  <=> $b->getfield('setup')  )  or
60   ( $a->getfield('pkgnum') <=> $b->getfield('pkgnum') )
61 } @$packages;
62
63 my $countrydefault = scalar($conf->config('countrydefault')) || 'US';  
64
65 my %conf_opt = (
66   #for services.html and status.html
67   'cust_pkg-display_times'    => ($conf->exists('cust_pkg-display_times')
68                                  || $curuser->option('cust_pkg-display_times')),
69   #for status.html
70   'cust_pkg-show_autosuspend' => $conf->exists('cust_pkg-show_autosuspend'),
71   #for status.html pkg-balances
72   'pkg-balances'              => $conf->exists('pkg-balances'),
73   'money_char'                => ( $conf->config('money_char') || '$' ),
74
75   #for location.html
76   'countrydefault'            => $countrydefault,
77   'statedefault'              => ( scalar($conf->config('statedefault'))
78                                   || ($countrydefault eq 'US' ? 'CA' : '') ),
79   #for services.html
80   'svc_external-skip_manual'  => $conf->exists('svc_external-skip_manual'),
81   'legacy_link'               => $conf->exists('legacy_link'),
82   'manage_link'               => scalar($conf->config('svc_broadband-manage_link')),
83   'manage_link_text'          => scalar($conf->config('svc_broadband-manage_link_text')),
84   'manage_link_loc'           => scalar($conf->config('svc_broadband-manage_link_loc')),
85   'manage_link-new_window'    => $conf->exists('svc_broadband-manage_link-new_window'),
86   'maestro-status_test'       => $conf->exists('maestro-status_test'),
87   'cust_pkg-large_pkg_size'   => scalar($conf->config('cust_pkg-large_pkg_size')),
88
89   # for packages.html Change location link
90   'show_location'             => $show_location,
91 );
92
93 </%init>