Merge branch 'patch-19' of https://github.com/gjones2/Freeside
[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   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Contact/Location') |h %></TH>
7   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Services') |h %></TH>
8 </TR>
9
10 % #$FS::cust_pkg::DEBUG = 2;
11 %   foreach my $cust_pkg (@$packages) {
12     <& .packagerow, $cust_pkg,
13         'cust_main' => $opt{'cust_main'},
14         'bgcolor'   => $opt{'bgcolor'},
15         %conf_opt
16     &>
17 %   }
18 % } else { # there are no packages
19 <BR>
20 % }
21 <%def .packagerow>
22 %
23 % my ($cust_pkg, %iopt) = @_;
24 % $iopt{'cust_pkg'} = $cust_pkg;
25 % $iopt{'part_pkg'} = $cust_pkg->part_pkg;
26   <!--pkgnum: <% $cust_pkg->pkgnum %>-->
27   <TR CLASS="row<%$row % 2%>">
28     <& package.html, %iopt &>
29     <& status.html,  %iopt &>
30     <TD CLASS="inv" BGCOLOR="<% $iopt{bgcolor} %>" WIDTH="20%" VALIGN="top">
31       <& contact.html, %iopt &>
32       <& location.html, %iopt &>
33     </TD>
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
55 # Sort order is hardcoded for now, can change this if needed.
56 @$packages = sort { 
57   ( $a->getfield('cancel') <=> $b->getfield('cancel') )  or
58   ( $a->getfield('setup')  <=> $b->getfield('setup')  )  or
59   ( $a->getfield('pkgnum') <=> $b->getfield('pkgnum') )
60 } @$packages;
61
62 my $countrydefault = scalar($conf->config('countrydefault')) || 'US';  
63
64 my %conf_opt = (
65   #for services.html and status.html
66   'cust_pkg-display_times'    => ($conf->exists('cust_pkg-display_times')
67                                  || $curuser->option('cust_pkg-display_times')),
68   #for status.html
69   'cust_pkg-show_autosuspend' => $conf->exists('cust_pkg-show_autosuspend'),
70   #for status.html pkg-balances
71   'pkg-balances'              => $conf->exists('pkg-balances'),
72   'money_char'                => ( $conf->config('money_char') || '$' ),
73
74   #for location.html
75   'countrydefault'            => $countrydefault,
76   'statedefault'              => ( scalar($conf->config('statedefault'))
77                                   || ($countrydefault eq 'US' ? 'CA' : '') ),
78   #for services.html
79   'svc_external-skip_manual'  => $conf->exists('svc_external-skip_manual'),
80   'legacy_link'               => $conf->exists('legacy_link'),
81   'manage_link'               => scalar($conf->config('svc_broadband-manage_link')),
82   'manage_link_text'          => scalar($conf->config('svc_broadband-manage_link_text')),
83   'manage_link_loc'           => scalar($conf->config('svc_broadband-manage_link_loc')),
84   'manage_link-new_window'    => $conf->exists('svc_broadband-manage_link-new_window'),
85   'maestro-status_test'       => $conf->exists('maestro-status_test'),
86   'cust_pkg-large_pkg_size'   => scalar($conf->config('cust_pkg-large_pkg_size')),
87
88 );
89
90 </%init>