multiple payment options, RT#23741
[freeside.git] / httemplate / view / cust_main / packages.html
1 <STYLE TYPE="text/css">
2 td.package {
3   vertical-align: top;
4   border-width: 0;
5   border-style: solid;
6 }
7 table.package {
8   border: none;
9   padding: 0;
10   border-spacing: 0;
11   width: 100%;
12 }
13 table.usage {
14   border: 1px solid black;
15   margin: auto;
16   width: 60%;
17   border-spacing: 0px;
18 }
19 .shared > * {
20   background-color: #ffffaa;
21 }
22 .row0 { background-color: #eeeeee; }
23 .row1 { background-color: #ffffff; }
24
25 table.hiddenrows {
26   width: 80%;
27   margin-left: 100px;
28   border: 1px solid #7E0079;
29   background-color: #cccccc;
30 }
31
32 .hiddenrows td {
33   text-align: center;
34 }
35
36 .rolldown_button {
37   min-width: 80px;
38   margin-left: 100px;
39   min-height: 20px;
40   background-color: #efefef;
41   border: 1px solid #7e0079;
42   z-index: 1;
43   text-align: center;
44 }
45 </STYLE>
46 % # activate rolldown buttons for hidden package blocks
47 <SCRIPT TYPE="text/javascript">
48 function toggle_rolldown() {
49   var up_arrow = <% decode_entities('&#x2b06') |js_string %>;
50   var dn_arrow = <% decode_entities('&#x2b07') |js_string %>;
51   var pkgnum = this.id.replace('rolldown_', '');
52   var hidden = document.getElementById('cust_pkg'+pkgnum+'_block');
53   if (hidden.style.display == 'none') {
54     hidden.style.display = '';
55     this.textContent = this.textContent.replace(dn_arrow, up_arrow);
56   } else {
57     hidden.style.display = 'none';
58     this.textContent = this.textContent.replace(up_arrow, dn_arrow);
59   }
60 }
61 <&| /elements/onload.js &>
62 var el;
63 % if ( $cgi->param('fragment') =~ /^cust_pkg(\d+)$/ ) {
64 % # IE-specific hack, but also unhide the row if it's in a hidden block
65 el = document.getElementById('cust_pkg<% $1 %>');
66 % }
67 var all_buttons = document.getElementsByClassName('rolldown_button');
68 for (var i = 0; i < all_buttons.length; i++) {
69   all_buttons[i].onclick = toggle_rolldown;
70   var block_id = all_buttons[i].id.replace('rolldown_', '');
71   if ( el && document.getElementById('cust_pkg'+block_id+'_block')
72                      .contains(el)
73      ) {
74     // then toggle it now
75     all_buttons[i].click();
76   }
77 }
78 if ( el ) el.scrollIntoView(true);
79 </&>
80 </SCRIPT>
81 % unless ( $opt{no_links} ) {
82
83 %   my $s = 0;
84
85 % if ( $curuser->access_right('Qualify service') ) { 
86   <% $s++ ? ' | ' : '' %>
87   <& qual_link.html, $cust_main &>
88 % }
89
90 % if ( $curuser->access_right('Order customer package') ) { 
91   <% $s++ ? ' | ' : '' %>
92   <& /elements/order_pkg_link.html, 'cust_main'=>$cust_main &>
93 % } 
94
95 % if ( $curuser->access_right('One-time charge') ) {
96   <% $s++ ? ' | ' : '' %>
97   <& /elements/one_time_charge_link.html, 'custnum'=>$cust_main->custnum &>
98 % } 
99
100 % if ( $curuser->access_right('Bulk move customer services') ) { 
101   <% $s++ ? ' | ' : '' %>
102
103   <& /elements/popup_link-cust_main.html,
104                'label'       => emt('Move services between packages'),
105                'action'      => "${p}edit/bulk-cust_svc-pkgnum.html",
106                'cust_main'   => $cust_main,
107                'actionlabel' => emt('Move services'),
108                'width'       => 968, #763,
109                'height'      => 575,
110   &>
111
112 % } 
113
114 % if ( $curuser->access_right('Bulk change customer packages') ) { 
115   <% $s++ ? ' | ' : '' %>
116   <A HREF="<% $p %>edit/cust_pkg.cgi?<% $cust_main->custnum %>"><% mt('Bulk order and cancel packages') |h %></A>
117 % } 
118
119 <BR><BR>
120
121 % } # unless $opt{no_links}
122
123 <TABLE>
124   <TR>
125     <TD ALIGN="left" VALIGN="top">
126
127 % if ( $cust_main->num_cancelled_pkgs ) {
128 %     if ( $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
129 %          || ( $conf->exists('hidecancelledpackages')
130 %               && ! $cgi->param('showcancelledpackages')
131 %             )
132 %        )
133 %     {
134 %       my $prev = $cgi->param('showcancelledpackages');
135 %       $cgi->param('showcancelledpackages', 1);
136   ( <a href="<% $cgi->self_url %>"><% mt('show') |h %> 
137 %       $cgi->param('showcancelledpackages', $prev);
138 %   } else {
139 %       $cgi->param('showcancelledpackages', 0);
140   ( <a href="<% $cgi->self_url %>"><% mt('hide') |h %> 
141 %       $cgi->param('showcancelledpackages', 1);
142 %   } 
143
144  <% mt('cancelled packages') |h %></a> )
145 % } 
146 % if ( $num_old_packages ) {
147 %   $cgi->param('showoldpackages', 1);
148     ( <a href="<% $cgi->self_url %>"><% mt('show old packages') |h %></a> )
149 % } elsif ( $cgi->param('showoldpackages') ) {
150 %   $cgi->param('showoldpackages', 0);
151     ( <a href="<% $cgi->self_url %>"><% mt('hide old packages') |h %></a> )
152 % }
153
154     </TD>
155
156 %   unless ( $opt{no_links} ) {
157
158     <TD ALIGN="right">
159       <A HREF="<%$p%>search/report_cust_pkg.html?custnum=<% $cust_main->custnum %>"><% mt('Package reports') |h %></A>
160 % if ( $curuser->access_right('Qualify service') ) { 
161     | <A HREF="<%$p%>search/qual.cgi?custnum=<% $cust_main->custnum %>"><% mt('View Qualifications') |h %></A>
162 % }
163       <BR>
164       <% mt('Service reports:') |h %> 
165         <A HREF="<%$p%>search/report_svc_acct.html?custnum=<% $cust_main->custnum %>"><% mt('accounts') |h %></A><BR>
166       <% mt('Usage reports:') |h %> 
167         <A HREF="<%$p%>search/report_cdr.html?custnum=<% $cust_main->custnum %>"><% mt('CDRs') |h %></A>
168     </TD>
169
170 %   } # unless $opt{no_links}
171
172   </TR>
173
174   <TR>
175     <TD COLSPAN=2>
176
177 %     $opt{cust_main} = $cust_main;
178 %     $opt{packages}  = \@packages;
179 %     $opt{cust_location_cache} = {};
180 %     if ( $conf->exists('cust_pkg-group_by_location') ) {
181         <& locations.html, %opt &>
182 %     } else { # in this format, put all packages in one section
183         <& /elements/table-grid.html &>
184         <& packages/section.html, %opt &>
185         </TABLE>
186 %     }
187
188     </TD>
189   </TR>
190
191 </TABLE>
192 <%init>
193
194 my $cust_main = shift;
195 my %opt = @_;
196 my $conf = new FS::Conf;
197
198 my $curuser = $FS::CurrentUser::CurrentUser;
199
200 my $countrydefault = scalar($conf->config('countrydefault')) || 'US';
201
202 my $hide_cancelled = 0;
203 if (  $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
204    || ( $conf->exists('hidecancelledpackages')
205          && ! $cgi->param('showcancelledpackages') )
206    )
207 {
208   $hide_cancelled = 1;
209 }
210
211 my $cust_pkg_fields =
212   join(', ', map { "cust_pkg.$_ AS $_"          } fields('cust_pkg') );
213
214 my $part_pkg_fields =
215   join(', ', ( map { "part_pkg.$_ AS part_pkg_$_" } fields('part_pkg') ),
216              'setup_option.optionvalue AS part_pkg__setup_fee',
217              'recur_option.optionvalue AS part_pkg__recur_fee',
218       );
219
220 my $group_by =
221   join(', ', map "cust_pkg.$_", fields('cust_pkg') ). ', '.
222   join(', ', map "part_pkg.$_", fields('part_pkg') );
223
224 my $num_svcs = '( SELECT COUNT(*) FROM cust_svc '.
225                '    WHERE cust_svc.pkgnum = cust_pkg.pkgnum ) AS num_svcs';
226
227 # don't exclude cancelled packages at this stage
228 my @packages = $cust_main->all_pkgs( {
229   'select'    => "$cust_pkg_fields, $part_pkg_fields, $num_svcs",
230   'addl_from' => qq{
231     LEFT JOIN part_pkg USING ( pkgpart )
232     LEFT JOIN part_pkg_option AS setup_option
233       ON (     cust_pkg.pkgpart = setup_option.pkgpart
234            AND setup_option.optionname = 'setup_fee' )
235     LEFT JOIN part_pkg_option AS recur_option
236       ON (     cust_pkg.pkgpart = recur_option.pkgpart
237            AND recur_option.optionname = 'recur_fee' )
238   },
239 } );
240
241 my %change_to_from; # target pkgnum => current cust_pkg, for future changes
242 my %changed_from; # old pkgnum => new cust_pkg, for past changes
243
244 foreach my $cust_pkg ( @packages ) {
245   my %hash = $cust_pkg->hash;
246   my %part_pkg = map  { /^part_pkg_(.+)$/ or die; ( $1 => $hash{$_} ); }
247                  grep { /^part_pkg_/ } keys %hash;
248   $cust_pkg->{'_pkgpart'} = new FS::part_pkg \%part_pkg;
249   if ( $cust_pkg->change_to_pkgnum ) {
250     $change_to_from{$cust_pkg->change_to_pkgnum} = $cust_pkg;
251   }
252   if ( $cust_pkg->change_pkgnum ) {
253     $changed_from{$cust_pkg->change_pkgnum} = $cust_pkg;
254   }
255 }
256
257 # filter out hidden package changes
258 if ( keys %change_to_from or keys %changed_from ) {
259   my @displayable_packages;
260   foreach my $cust_pkg (@packages) {
261
262     if ( exists( $change_to_from{$cust_pkg->pkgnum} ) ) {
263
264       # $cust_pkg is an ordered, not-yet-active package change target
265       my $change_from = $change_to_from{ $cust_pkg->pkgnum };
266       $cust_pkg->set('change_from_pkg', $change_from);
267       $change_from->set('change_to_pkg', $cust_pkg);
268
269     } elsif ( exists( $changed_from{$cust_pkg->pkgnum} ) ) {
270
271       # $cust_pkg is a canceled package changed into another packge
272       # hide it under the destination package's history
273       my $changed_to = $changed_from{$cust_pkg->pkgnum};
274       $cust_pkg->set('changed_to_pkg', $changed_to);
275       $changed_to->set('changed_from_pkg', $cust_pkg);
276
277     } else {
278       push @displayable_packages, $cust_pkg;
279     }
280
281   }
282   @packages = @displayable_packages;
283 }
284
285 # filter all cancelled packages if the user wants
286 if ( $hide_cancelled ) {
287   @packages = grep { !$_->get('cancel') } @packages;
288 }
289
290 # filter out 'old' packages
291 my $num_old_packages = scalar(@packages);
292
293 unless ( $cgi->param('showoldpackages') ) {
294   my $years = $conf->config('cust_main-packages-years') || 2;
295   my $then = time - $years * 31556926; #60*60*24*365.2422 is close enough
296
297   my %hide = ( 'cancelled'       => 'cancel',
298                'one-time charge' => 'setup',
299              );
300
301   @packages =
302     grep { !exists($hide{$_->status}) or $_->get($hide{$_->status}) > $then
303            or $_->num_svcs #don't hide packages w/services
304          }
305          @packages;
306 }
307
308 $num_old_packages -= scalar(@packages);
309
310 # don't include supplemental packages in this list; they'll be found from
311 # their main packages
312 # (as will change-target packages)
313 @packages = grep !$_->main_pkgnum, @packages;
314
315 foreach my $cust_pkg ( @packages ) {
316   $cust_pkg->{'_cust_pkg_discount_active'} =
317    [ $cust_pkg->cust_pkg_discount_active ];
318 }
319
320 </%init>