summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/packages/package.html
blob: 9fed5b581954144decb1735424b754de9ebf5192 (plain)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
<TD CLASS="inv package" BGCOLOR="<% $bgcolor %>" VALIGN="top">
  <% join('', @marker ) %>
  <TABLE CLASS="inv package"> 
    <TR>
      <TD COLSPAN=2>
        <% $opt{before_pkg_callback}
             ? &{ $opt{before_pkg_callback} }( $cust_pkg )
             : ''
        %>

% ###
% # Package
% ###
        <A NAME="cust_pkg<% $cust_pkg->pkgnum %>"
           ID  ="cust_pkg<% $cust_pkg->pkgnum %>"
        ><% $opt{show_pkgnum} ? $cust_pkg->pkgnum.': ' : '' %><B><% $part_pkg->pkg |h %></B></A>
%
%       my $custom_comment;
%       if ( 0 && FS::part_pkg::flat->can('price_info') eq $part_pkg->can('price_info') ) {
%         #perf hack / disabled in 4.x (feature pricing / cust_pkg_usageprice incompatible, well, harder)
%
%         $part_pkg->{"_$_"} = $part_pkg->option($_) || 0
%           foreach grep !defined($part_pkg->{"_$_"} ), qw(setup_fee recur_fee);
%           
%         my $str = '';
%         $str = $opt{money_char} . $part_pkg->{_setup_fee}.
%                ($part_pkg->{_recur_fee} ? ' setup' : ' one-time')
%           if $part_pkg->{_setup_fee};
%         $str .= ', ' if $part_pkg->{_setup_fee} && $part_pkg->{_recur_fee};
%         $str .= $opt{money_char}. $part_pkg->{_recur_fee}.
%                 '/'. $part_pkg->freq_pretty
%           if $part_pkg->{_recur_fee};
%         $str;
%
%         $custom_comment = 
%           ( $part_pkg->custom ? '(CUSTOM) ' : '' ).
%           $part_pkg->comment.
%           ( ($part_pkg->custom || $part_pkg->comment) ? ' - ' : '' ).
%           ($str || 'No charge');
%
%       } else {
%         $custom_comment = $part_pkg->custom_comment('cust_pkg'=>$cust_pkg);
%       }
        <% $custom_comment ? ' - ' : '' %>
        <% $custom_comment |h %>
      </TD>
    </TR>

% ###
% # Quantity
% ###
% if ( $cust_pkg->quantity > 1 ) {
    <TR>
      <TD COLSPAN=2>
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<% mt('Quantity:') |h %> 
          <B><% $cust_pkg->quantity %></B>

%       if ( $curuser->access_right('Change customer package')
%              && ! $cust_pkg->get('cancel')
%              && ! $change_from
%              && ! $supplemental
%              && $part_pkg->freq ne '0'
%              && ! $opt{no_links}
%              && $opt{'invoice-unitprice'}
%          )
%       {
          <FONT SIZE="-1">
            (&nbsp;<% pkg_change_quantity_link($cust_pkg, 'change') %>&nbsp;)
          </FONT>
%       }
      </TD>
    </TR>
% }

% ###
% # Sales person
% ###
% if ( $cust_pkg->salesnum ) {
    <TR>
      <TD COLSPAN=2>
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<% mt('Sales Person:') |h %> 
          <B><% $cust_pkg->salesperson |h %></B>
%       if ( $curuser->access_right('Change customer package')
%              && ! $cust_pkg->get('cancel')
%              && ! $change_from
%              && ! $supplemental
%              #&& $part_pkg->freq ne '0'
%              && ! $opt{no_links}
%          )
%       {
        <FONT SIZE="-1">
          (&nbsp;<% pkg_change_salesnum_link($cust_pkg, 'change') %>&nbsp;)
        </FONT>
%     }
      </TD>
    </TR>
% }


% ###
% # Invoice details & comments
% ###
%   my $editi = $curuser->access_right('Edit customer package invoice details');
%   my $editc = $curuser->access_right('Edit customer package comments');
%   my @cust_pkg_detail = $cust_pkg->cust_pkg_detail;
%   my @invoice_detail = grep { $_->detailtype eq 'I' } @cust_pkg_detail;
%   my @comments       = grep { $_->detailtype eq 'C' } @cust_pkg_detail;
%
%   if ( scalar(@invoice_detail) || scalar(@comments) || $editi || $editc ) {
%
%     my $editlink = $p. 'edit/cust_pkg_detail.html?pkgnum='. $cust_pkg->pkgnum.
%                    ';detailtype=';

      <TR>

%       if ( @invoice_detail ) {
          <TD VALIGN="top">
            <& /elements/table-grid.html &>
              <TR>
                <TH BGCOLOR="#dddddd" STYLE="border-bottom: dashed 1px black; padding-bottom: 1px">
                  <FONT SIZE="-1">
                    <% mt('Invoice details') |h %> 
%                   if ( $editi && ! $cust_pkg->get('cancel') && ! $opt{no_links} ) {
                      (<& /elements/popup_link.html, { 
                                    'action'      => $editlink. 'I',
                                    'label'       => emt('edit'),
                                    'actionlabel' => emt('Edit invoice details'),
                                    'color'       => '#333399',
                                    'width'       => 763,
                                 }
                       &>)
%                   }
                  </FONT>
                </TH>
              </TR>
%             foreach my $cust_pkg_detail ( @invoice_detail ) {
                <TR>
                  <TD><FONT SIZE="-1">&nbsp;-&nbsp;<% $cust_pkg_detail->detail |h %></FONT></TD>
                </TR>
%             }
            </TABLE>
          </TD>
%       } else {
          <TD>
          </TD>
%       }

%       if ( @comments ) { 
          <TD VALIGN="top">
            <& /elements/table-grid.html &>
              <TR>
                <TH BGCOLOR="#dddddd" STYLE="border-bottom: dashed 1px black; padding-bottom: 1px">
                  <FONT SIZE="-1">
                    <% mt('Comments') |h %> 
%                   if ( $editc && ! $opt{no_links} ) {
                      (<& /elements/popup_link.html, { 
                                    'action'      => $editlink. 'C',
                                    'label'       => emt('edit'),
                                    'actionlabel' => emt('Edit comments'),
                                    'color'       => '#333399',
                                    'width'       => 763,
                                 }
                       &>)
%                   }
                  </FONT>
                </TH>
              </TR>
%             foreach my $cust_pkg_detail ( @comments ) {
                <TR>
                  <TD><FONT SIZE="-1">&nbsp;-&nbsp;<% $cust_pkg_detail->detail |h %></FONT></TD>
                </TR>
%             }
            </TABLE>
          </TD>
%       } else {
          <TD>
          </TD>
%       }

      </TR>


%   }
  </TABLE>

% if ( @cust_pkg_usage ) {
  <TABLE CLASS="usage inv">
    <TR><TH COLSPAN=4><% emt('Included usage') %></TH></TR>
%   foreach my $usage (@cust_pkg_usage) {
%     my $part = $usage->part_pkg_usage;
%     my $ratio = 255 * ($usage->minutes / $part->minutes);
%     $ratio = 255 if $ratio > 255; # because rollover
%     my $color = sprintf('STYLE="font-weight: bold; color: #%02x%02x00"', 255 - $ratio, $ratio);
%     my $trstyle = '';
%     $trstyle = ' CLASS="shared"' if $part->shared;
    <TR<%$trstyle%>>
      <TD ALIGN="right"><% $part->description %>: </TD>
      <TD <%$color%> ALIGN="right"><% sprintf('%.1f', $usage->minutes) %></TD>
      <TD <%$color%>> / </TD>
      <TD <%$color%>><% $part->minutes %></TD>
%     if ( $part->shared ) {
      <TD><I>(shared)</I></TD>
%     }
    </TR>
%   }
  </TABLE>
% }


% ###
% # Package actions dropdown
% ###
% unless ( $opt{no_links} ) {

  <TABLE CLASS="inv package"> 
    <TR>
      <TD COLSPAN=2>

%       my $plink = "pkgnum=$pkgnum";
%       my $reg_recur_cond =  sub { $part_pkg->freq ne '0'
%                                       && ! $change_from
%                                       && ! $supplemental
%                                       && ! $cust_pkg->get('cancel')
%                                 };
%       my $change_cond = sub { $part_pkg->freq ne '0'
%                                 && ! $change_from
%                                 && ! $supplemental
%                                 && ! $cust_pkg->get('cancel')
%                                 && $cust_pkg->change_to_pkgnum,
%                             };

        <& /elements/dropdown-menu.html,
             id      => 'cust_pkg'. $cust_pkg->pkgnum. '_menu',
             bgcolor => $opt{row} % 2 ? '#ffffff' : '#eeeeee',
             menu    => [
               [ 

                 #TODO: order/group these better

                 { label => 'Package actions',
                   content =>
                    '<FONT STYLE="text-decoration:underline;font-weight:bold">'.
                    'Package actions</FONT>'.
                    ' <IMG SRC="'.$p.'images/arrow.down.black.png">',
                 },

                 { label       => 'Modify one-time charge',
                   acl         => 'Modify one-time charge',
                   condition   => sub { $part_pkg->freq eq '0' },
                   url         => "edit/quick-charge.html?change_$plink",
                 },

                 { label       => 'Change package',
                   acl         => 'Change customer package',
                   condition   => $reg_recur_cond,
                   popup       => "misc/change_pkg.cgi?$plink".
                                    ';locationnum='. $cust_pkg->locationnum.
                   actionlabel => emt('Change package'),
                   #width       => 768,
                   width       => 960,
                   height      => 538,
                 },

                 { label       => 'Discount package',
                   condition   => sub { $part_pkg->freq ne '0'
                                         && ! $change_from
                                         && ! $supplemental
                                         && ! $cust_pkg->get('cancel')
                                         && $can_discount_pkg
                                      },
                   popup       => "edit/cust_pkg_discount.html?$plink".
                   actionlabel => emt('Discount package'),
                   width       => 616,
                 },

                 { label       => 'Customize package',
                   acl         => 'Customize customer package',
                   condition   => $reg_recur_cond,
                   url         => "edit/part_pkg.cgi?$plink".
                                    ';clone='. $part_pkg->pkgpart,
                 },

                 { label       => 'View package events',
                   acl         => [ 'Billing event reports',
                                    'View customer billing events', ],
                   condition   => sub { $cust_pkg->exists_cust_event },
                   url         => "search/cust_event.html?$plink",
                 },

                 { label       => 'Change quantity',
                   acl         => 'Change customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                        && ! $change_from
                                        && ! $supplemental
                                        && ! $cust_pkg->get('cancel')
                                        && $opt{'invoice-unitprice'}
                                  },
                   popup       => "edit/cust_pkg_quantity.html?$plink",

                   actionlabel => emt('Change quantity'),
                   width       => 390,
                   height      => 220,
                 },

                 { label       => 'Change sales person',
                   acl         => 'Change customer package',
                   condition   => sub { ! $change_from
                                        && ! $supplemental
                                        && ! $cust_pkg->get('cancel')
                                  },
                   popup       => "edit/cust_pkg_salesnum.html?$plink",
                   actionlabel => emt('Change sales persion'),
                   width       => 390,
                   height      => 220,
                 },

                 { label       => (@invoice_detail ? 'Edit' : 'Add').
                                    ' invoice details',
                   acl         => 'Edit customer package invoice details',
                   condition   => sub { ! $cust_pkg->get('cancel') },
                   popup       => "edit/cust_pkg_detail.html?$plink".
                                    ';detailtype=I',
                   actionlabel => emt( (@invoice_detail ? 'Edit' : 'Add').
                                       ' invoice details'
                                     ),
                   width       => 768,
                 },

                 { label        => (@comments ? 'Edit' : 'Add'). ' comments',
                   acl         => 'Edit customer package comments',
                   popup       => "edit/cust_pkg_detail.html?$plink".
                                    ';detailtype=C',
                   actionlabel => emt( (@comments ? 'Edit' : 'Add').
                                       ' comments'
                                     ),
                   width       => 768,
                 },

                 { label       => '-',
                   condition   => sub { $part_pkg->freq ne '0' },
                   content     => '-',
                 },

                 { label       => 'Set start date',
                   acl         => 'Change package start date',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->get('setup')
                                      },
                  popup       => "misc/change_pkg_date.html?$plink".
                                   ';field=start_date',
                  actionlabel => emt('Set start of billing for'),
                  width       => 510,
                  height      => 310,
                 },

                 { label       => 'Set contract end',
                   acl         => 'Change package contract end date',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->change_to_pkgnum
                                      },
                   popup       => "misc/change_pkg_date.html?$plink".
                                   ';field=contract_end',
                   actionlabel => emt('Set contract end for'),
                   width       => 510,
                   height      => 310,
                 },

                 { label       => '-',
                   condition   => sub { $part_pkg->freq ne '0' },
                   content     => '-',
                 },

                 { label       => 'Change now',
                   acl         => 'Change customer package',
                   condition   => $change_cond,
                   url         => "misc/change_pkg_now.cgi?$pkgnum",
                 },

                 { label       => 'Reschedule',
                   acl         => 'Change customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && $cust_pkg->change_to_pkgnum,
                                      },
                   popup       => "misc/change_pkg.html?$plink",
                   actionlabel => emt('Edit scheduled change for'),
                   url         => "misc/change_pkg_now.cgi?$pkgnum",
                   width       => 960,
                   height      => 490,
    
                 },

                 { label       => 'Abort change',
                   acl         => 'Change customer package',
                   condition   => $change_cond,
                   url         => "misc/do_not_change_pkg.cgi?$pkgnum",
                 },

                 { label       => '-',
                   acl         => 'Change customer package',
                   condition   => $change_cond,
                   content     => '-',
                 },

                 { label       => 'Suspend now',
                   acl         => 'Suspend customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->get('susp')
                                      },
                   popup       => "misc/cancel_pkg.html?method=suspend;$plink",
                   actionlabel => emt('Suspend now'),
                   color       => '#FF9900',
                   width       => 768,
                   height      => 420,
                 },

                 { label       => 'Suspend later',
                   acl         => 'Suspend customer package later',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->get('susp')
                                      },
                   popup       => "misc/cancel_pkg.html?method=adjourn;$plink",
                   actionlabel => emt('Suspend later'),
                   color       => '#CC6600',
                   width       => 768,
                   height      => 445,
                 },

                 { label       => $cust_pkg->dundate
                                    ? 'Edit suspension delay'
                                    : 'Delay suspend',

                   acl         => 'Delay suspension events',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->get('susp')
                                      },
                   popup       => "misc/delay_susp_pkg.html?$plink",
                   actionlabel => emt('Delay suspend for'),
                   width       => 768,
                 },

                 { label       => 'Start billing',
                   acl         => 'Unsuspend customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && $cust_pkg->get('susp')
                                          && $cust_pkg->order_date == $cust_pkg->get('susp')
                                      },
                   popup        => "misc/unhold_pkg.html?$plink",
                   actionlabel  => emt('Start billing'),
                   color       => '#00CC00',
                   width       => 510,
                   height      => 310,
                 },

                 { label       => 'Unsuspend now',
                   acl         => 'Unsuspend customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && $cust_pkg->get('susp')
                                          && $cust_pkg->order_date != $cust_pkg->get('susp')
                                      },
                   'url'       => "misc/unsusp_pkg.cgi?$pkgnum",
                 },

                 { label       => 'Unsuspend later',
                   acl         => 'Unsuspend customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && $cust_pkg->get('susp')
                                          && $cust_pkg->order_date != $cust_pkg->get('susp')
                                      },
                   popup       => "misc/cancel_pkg.html?method=resume;$plink",
                   actionlabel => emt('Unsuspend later'),
                   color       => '#00CC00',
                   width       => 768,
                 },

                 { label       => '-',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->get('cancel')
                                          && ! $cust_pkg->get('susp')
                                      },
                   content     => '-',
                 },

                 { label       => 'Cancel now',
                   acl         => 'Cancel customer package immediately',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->change_to_pkgnum
                                          && ! $cust_pkg->get('cancel')
                                      },
                   popup       => "misc/cancel_pkg.html?method=cancel;$plink",
                   actionlabel => emt('Cancel now'),
                   color       => '#FF0000',
                   width       => 768,
                 },

                 { label       => 'Cancel later',
                   acl         => 'Cancel customer package later',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $change_from
                                          && ! $supplemental
                                          && ! $cust_pkg->change_to_pkgnum
                                          && ! $cust_pkg->get('cancel')
                                      },
                   popup       => "misc/cancel_pkg.html?method=expire;$plink",
                   actionlabel => emt('Cancel later'),
                   color       => '#CC0000',
                   width       => 768,
                 },

                 { label       => 'Un-cancel',
                   acl         => 'Un-cancel customer package',
                   condition   => sub { $part_pkg->freq ne '0'
                                          && ! $supplemental
                                          && ! $cust_pkg->change_custnum
                                          && $cust_pkg->get('cancel')
                                      },
                   popup       => "misc/cancel_pkg.html?method=uncancel;$plink",
                   actionlabel => emt('Un-cancel'),
                   width       => 960,
                   height      => 740,

                 },

               ],
             ],
        &>

      </TD>
    </TR>
  </TABLE>

% }

  <% join('', map '</DIV>', @marker ) %>

</TD>

<%init>

my %opt = @_;

my $bgcolor  = $opt{'bgcolor'};
my $cust_pkg = $opt{'cust_pkg'};
my $part_pkg = $opt{'part_pkg'};

my $curuser = $FS::CurrentUser::CurrentUser;

my $countrydefault = $opt{'countrydefault'} || 'US';
my $statedefault   = $opt{'statedefault'}
                     || ($countrydefault eq 'US' ? 'CA' : '');

# put a marker on the left edge of this column
# if this package is somehow special
my $supplemental = $opt{'supplemental'} || 0;
my $change_from = $opt{'change_from'} || 0;
my @marker;
if ( $supplemental ) {
  push @marker, '<DIV CLASS="package-marker-supplemental">';
}
if ( $change_from ) {
  push @marker, '<DIV CLASS="package-marker-change_from">';
}

$cust_pkg->pkgnum =~ /^(\d+)$/;
my $pkgnum = $1;
my @cust_pkg_usage = qsearch({
  'select'    => 'cust_pkg_usage.*',
  'table'     => 'cust_pkg_usage',
  'addl_from' => ' JOIN part_pkg_usage USING (pkgusagepart)',
  'extra_sql' => " WHERE pkgnum = $1",
  'order_by'  => ' ORDER BY priority ASC, description ASC',
});

#subroutines

#false laziness w/status.html
sub pkg_link {
  my($action, $label, $cust_pkg) = @_;
  return '' unless $cust_pkg;
  qq!<a href="$p$action.cgi?!. $cust_pkg->pkgnum. qq!">$label</a>!;
}

sub pkg_change_location_link {
  my $cust_pkg = shift;
  my $pkgpart = $cust_pkg->pkgpart;
  include( '/elements/popup_link-cust_pkg.html',
    'action'      => $p. "misc/change_pkg.cgi?locationnum=-1;pkgpart=$pkgpart;".
                     "address1=;address2=;city=;county=;state=$statedefault;".
                     "zip=;country=$countrydefault",
    'label'       => emt('Change location'),
    'actionlabel' => emt('Change'),
    'cust_pkg'    => $cust_pkg,
    'width'       => 960,
    'height'      => 530,
  );
}

sub pkg_change_quantity_link {
  my( $cust_pkg, $label ) = @_;
  include( '/elements/popup_link-cust_pkg.html',
    'action'      => $p. 'edit/cust_pkg_quantity.html?',
    'label'       => emt($label),
    'actionlabel' => emt('Change'),
    'cust_pkg'    => $cust_pkg,
    'width'       => 390,
    'height'      => 220,
  );
}

sub pkg_change_salesnum_link {
  my( $cust_pkg, $label ) = @_;
  include( '/elements/popup_link-cust_pkg.html',
    'action'      => $p. 'edit/cust_pkg_salesnum.html?',
    'label'       => emt($label),
    'actionlabel' => emt('Change'),
    'cust_pkg'    => $cust_pkg,
    'width'       => 390,
    'height'      => 220,
  );
}

# figure out if this user will be able to edit either the setup or recurring
# discounts for this package
my $can_discount_pkg = 0;

if ( $part_pkg->can_discount ) {
  #looking these up individually uses the ACL cache and is a big win for lots
  # of packages
  my $discount = $curuser->access_right('Discount customer package');
  my $waive    = $curuser->access_right('Waive setup fee');

  $can_discount_pkg = 
    (   ($discount || $waive) 
          && $cust_pkg->base_setup > 0
          && !$cust_pkg->setup
     or
        ( $discount
          && $cust_pkg->base_recur > 0
          && $cust_pkg->freq ne '0'
        )
    );

}

</%init>