1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
<A NAME="cust_pkg"><FONT SIZE="+2">Packages</FONT></A><BR>
% my $s = 0;
% if ( $curuser->access_right('Order customer package') ) {
<% $s++ ? ' | ' : '' %>
<% include( '/elements/popup_link-cust_main.html',
'action' => $p. 'misc/order_pkg.html',
'label' => 'Order new package',
'actionlabel' => 'Order new package',
'color' => '#333399',
'cust_main' => $cust_main,
'closetext' => 'Close',
'width' => 763,
)
%>
% }
% if ( $curuser->access_right('One-time charge')
% && $conf->config('payby-default') ne 'HIDE'
% ) {
<% $s++ ? ' | ' : '' %>
<% include('one_time_charge_link.html', $cust_main) %>
% }
% if ( $curuser->access_right('Bulk change customer packages') ) {
<% $s++ ? ' | ' : '' %>
<A HREF="<% $p %>edit/cust_pkg.cgi?<% $cust_main->custnum %>">Bulk order and cancel packages</A> (preserves services)
% }
<BR><BR>
% if ( @$packages ) {
Current packages
% }
% if ( $cust_main->num_cancelled_pkgs ) {
% if ( $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
% || ( $conf->exists('hidecancelledpackages')
% && ! $cgi->param('showcancelledpackages')
% )
% )
% {
% $cgi->param('showcancelledpackages', 1);
%
( <a href="<% $cgi->self_url %>">show
% } else {
% $cgi->param('showcancelledpackages', 0);
%
( <a href="<% $cgi->self_url %>">hide
% }
cancelled packages</a> )
% }
% if ( @$packages ) {
<% include('/elements/table-grid.html') %>
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor = '';
<TR>
<TH CLASS="grid" BGCOLOR="#cccccc">Package</TH>
<TH CLASS="grid" BGCOLOR="#cccccc">Status</TH>
% if ( $show_location ) {
<TH CLASS="grid" BGCOLOR="#cccccc">Location</TH>
% }
<TH CLASS="grid" BGCOLOR="#cccccc">Services</TH>
</TR>
% foreach my $cust_pkg (@$packages) {
%
% if ( $bgcolor eq $bgcolor1 ) {
% $bgcolor = $bgcolor2;
% } else {
% $bgcolor = $bgcolor1;
% }
%
% my %iopt = (
% 'bgcolor' => $bgcolor,
% 'cust_pkg' => $cust_pkg,
% 'part_pkg' => $cust_pkg->part_pkg,
% %conf_opt,
% );
<!--pkgnum: <% $cust_pkg->pkgnum %>-->
<TR>
<% include('packages/package.html', %iopt) %>
<% include('packages/status.html', %iopt) %>
% if ( $show_location ) {
<% include('packages/location.html', %iopt) %>
% }
<% include('packages/services.html', %iopt) %>
</TR>
% }
</TABLE>
% } else {
<BR>
% }
% if ( $cgi->param('fragment') =~ /^cust_pkg(\d+)$/ ) {
<SCRIPT>
// IE-specific hack. other browsers listen to #fragments
// is this even working? or is the #target redirection just working cause
// we set the URL params differently?
var el = document.getElementById( 'cust_pkg<% $1 %>' );
if ( el ) el.scrollIntoView(true);
</SCRIPT>
% }
<%init>
my( $cust_main ) = @_;
my $conf = new FS::Conf;
my $curuser = $FS::CurrentUser::CurrentUser;
my $packages = get_packages($cust_main, $conf);
my $show_location = $conf->exists('cust_pkg-always_show_location')
|| ( grep $_->locationnum, @$packages ); # ? '1' : '0';
my $countrydefault = scalar($conf->config('countrydefault')) || 'US';
my %conf_opt = (
#for services.html and status.html
'cust_pkg-display_times' => $conf->exists('cust_pkg-display_times'),
#for status.html
'cust_pkg-show_autosuspend' => $conf->exists('cust_pkg-show_autosuspend'),
#for location.html
'countrydefault' => $countrydefault,
'statedefault' => ( scalar($conf->config('statedefault'))
|| ($countrydefault eq 'US' ? 'CA' : '') ),
#for services.html
'svc_external-skip_manual' => $conf->exists('svc_external-skip_manual'),
'legacy_link' => $conf->exists('legacy_link'),
);
#subroutines
sub get_packages {
my $cust_main = shift or return undef;
my $conf = shift;
my @packages = ();
my $method;
if ( $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
|| ( $conf->exists('hidecancelledpackages')
&& ! $cgi->param('showcancelledpackages') )
)
{
$method = 'ncancelled_pkgs';
} else {
$method = 'all_pkgs';
}
[ $cust_main->$method() ];
}
</%init>
|