retouch bandwidth countdown
[freeside.git] / FS / FS / part_pkg / subscription.pm
1 package FS::part_pkg::subscription;
2
3 use strict;
4 use vars qw(@ISA %info);
5 use Time::Local qw(timelocal);
6 #use FS::Record qw(qsearch qsearchs);
7 use FS::part_pkg::flat;
8
9 @ISA = qw(FS::part_pkg::flat);
10
11 %info = (
12   'name' => 'First partial month full charge, then flat-rate (selectable billing day)',
13   'fields' => {
14     'setup_fee' => { 'name' => 'Setup fee for this package',
15                      'default' => 0,
16                    },
17     'recur_fee' => { 'name' => 'Recurring fee for this package',
18                      'default' => 0,
19                            },
20     'cutoff_day' => { 'name' => 'billing day',
21                       'default' => 1,
22                     },
23     'seconds'       => { 'name' => 'Time limit for this package',
24                          'default' => '',
25                        },
26     'upbytes'       => { 'name' => 'Upload limit for this package',
27                          'default' => '',
28                        },
29     'downbytes'     => { 'name' => 'Download limit for this package',
30                          'default' => '',
31                        },
32     'totalbytes'    => { 'name' => 'Transfer limit for this package',
33                          'default' => '',
34                        },
35     'recharge_amount'       => { 'name' => 'Cost of recharge for this package',
36                          'default' => '',
37                        },
38     'recharge_seconds'      => { 'name' => 'Recharge time for this package',
39                          'default' => '',
40                        },
41     'recharge_upbytes'      => { 'name' => 'Recharge upload for this package',
42                          'default' => '',
43                        },
44     'recharge_downbytes'    => { 'name' => 'Recharge download for this package',                         'default' => '',
45                        },
46     'recharge_totalbytes'   => { 'name' => 'Recharge transfer for this package',                         'default' => '',
47                        },
48     #it would be better if this had to be turned on, its confusing
49     'externalid' => { 'name'   => 'Optional External ID',
50                       'default' => '',
51                     },
52   },
53   'fieldorder' => [ 'setup_fee', 'recur_fee', 'cutoff_day', 'seconds',
54                     'upbytes', 'downbytes', 'totalbytes',
55                     'recharge_amount', 'recharge_seconds', 'recharge_upbytes',
56                     'recharge_downbytes', 'recharge_totalbytes',
57                     'externalid' ],
58   'fieldorder' => [ 'setup_fee', 'recur_fee','cutoff_day', 'seconds',
59                     'upbytes', 'downbytes', 'totalbytes',
60                     'recharge_amount', 'recharge_seconds', 'recharge_upbytes',
61                     'recharge_downbytes', 'recharge_totalbytes',
62                    ],
63   'freq' => 'm',
64   'weight' => 30,
65 );
66
67 sub calc_recur {
68   my($self, $cust_pkg, $sdate ) = @_;
69   my $cutoff_day = $self->option('cutoff_day', 1) || 1;
70   my $mnow = $$sdate;
71   my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($mnow) )[0,1,2,3,4,5];
72
73   if ( $mday < $cutoff_day ) {
74      if ($mon==0) {$mon=11;$year--;}
75      else {$mon--;}
76   }
77
78   $$sdate = timelocal(0,0,0,$cutoff_day,$mon,$year);
79
80   $self->reset_usage($cust_pkg);
81
82   $self->option('recur_fee');
83 }
84
85 1;