b122ff19ce7cb533fffb5f41d6f96e97f0426452
[freeside.git] / FS / FS / part_pkg / agent.pm
1 package FS::part_pkg::agent;
2 #use base qw(FS::part_pkg::recur_Common);
3 use base qw(FS::part_pkg::prorate);
4
5 use strict;
6 use vars qw($DEBUG $me %info);
7 use Date::Format;
8 use FS::Record qw( qsearch );
9 use FS::agent;
10 use FS::cust_main;
11
12 $DEBUG = 0;
13
14 $me = '[FS::part_pkg::agent]';
15
16 %info = (
17   'name'      => 'Wholesale bulk billing, for master customers of an agent.',
18   'shortname' => 'Wholesale bulk billing for agent.',
19   'inherit_fields' => [qw( prorate global_Mixin)],
20   'fields' => {
21     #'recur_method'  => { 'name' => 'Recurring fee method',
22     #                     #'type' => 'radio',
23     #                     #'options' => \%recur_method,
24     #                     'type' => 'select',
25     #                     'select_options' => \%recur_Common::recur_method,
26     #                   },
27     'cutoff_day'    => { 'name' => 'Billing Day (1 - 28)',
28                          'default' => '1',
29                        },
30     'add_full_period'=> { 'name' => 'When prorating first month, also bill '.
31                                     'for one full period after that',
32                           'type' => 'checkbox',
33                         },
34
35     'no_pkg_prorate'   => { 'name' => 'Disable prorating bulk packages (charge full price for packages active only a portion of the month)',
36                             'type' => 'checkbox',
37                           },
38
39   },
40
41   'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate ) ],
42
43   'weight' => 52,
44
45 );
46
47 #some false laziness-ish w/bulk.pm...  not a lot
48 sub calc_recur {
49   my $self = shift;
50   my($cust_pkg, $sdate, $details, $param ) = @_;
51
52   my $last_bill = $cust_pkg->last_bill;
53
54   return sprintf("%.2f", $self->SUPER::calc_recur(@_) )
55     unless $$sdate > $last_bill;
56
57   my $conf = new FS::Conf;
58   my $money_char = $conf->config('money_char') || '$';
59
60   my $total_agent_charge = 0;
61
62   warn "$me billing for agent packages from ". time2str('%x', $last_bill).
63                                        " to ". time2str('%x', $$sdate). "\n"
64     if $DEBUG;
65
66   my $prorate_ratio =   ( $$sdate                     - $last_bill )
67                       / ( $self->add_freq($last_bill) - $last_bill );
68
69   #almost always just one,
70   #unless you have multiple agents with same master customer0
71   my @agents = qsearch('agent', { 'agent_custnum' => $cust_pkg->custnum } );
72
73   foreach my $agent (@agents) {
74
75     warn "$me billing for agent ". $agent->agent. "\n"
76       if $DEBUG;
77
78     #not the most efficient to load them all into memory,
79     #but good enough for our current needs
80     my @cust_main = qsearch('cust_main', { 'agentnum' => $agent->agentnum } );
81
82     foreach my $cust_main (@cust_main) {
83
84       warn "$me billing agent charges for ". $cust_main->name_short. "\n"
85         if $DEBUG;
86
87       #make sure setup dates are filled in
88       my $error = $cust_main->bill; #options don't propogate from freeside-daily
89       die "Error pre-billing agent customer: $error" if $error;
90
91       my @cust_pkg = grep { my $setup  = $_->get('setup');
92                             my $cancel = $_->get('cancel');
93
94                             $setup < $$sdate  # END
95                             && ( ! $cancel || $cancel > $last_bill ) #START
96                           }
97                      $cust_main->all_pkgs;
98
99       foreach my $cust_pkg ( @cust_pkg ) {
100
101         warn "$me billing agent charges for pkgnum ". $cust_pkg->pkgnum. "\n"
102           if $DEBUG;
103
104         my $pkg_details = $cust_main->name_short. ': '; #name?
105
106         my $part_pkg = $cust_pkg->part_pkg;
107
108         # + something to identify package... primary service probably
109         # no... package def for now
110         $pkg_details .= $part_pkg->pkg. ': ';
111
112         my $pkg_charge = 0;
113
114         #option to not fallback? via options above
115         my $pkg_setup_fee  =
116           $part_pkg->setup_cost || $part_pkg->option('setup_fee');
117         my $pkg_base_recur =
118           $part_pkg->recur_cost || $part_pkg->base_recur_permonth($cust_pkg);
119
120         my $pkg_start = $cust_pkg->get('setup');
121         if ( $pkg_start < $last_bill ) {
122           $pkg_start = $last_bill;
123         } elsif ( $pkg_setup_fee ) {
124           $pkg_charge += $pkg_setup_fee;
125           $pkg_details .= $money_char. sprintf('%.2f setup, ', $pkg_setup_fee );
126         }
127
128         my $pkg_end = $cust_pkg->get('cancel');
129         $pkg_end = ( !$pkg_end || $pkg_end > $$sdate ) ? $$sdate : $pkg_end;
130
131
132         my $pkg_recur_charge = $prorate_ratio * $pkg_base_recur;
133         $pkg_recur_charge *= ( $pkg_end - $pkg_start )
134                            / ( $$sdate  - $last_bill )
135           unless $self->option('no_pkg_prorate');
136
137         my $recur_charge += $pkg_recur_charge;
138
139         $pkg_details .= $money_char. sprintf('%.2f', $recur_charge ).
140                         ' ('.  time2str('%x', $pkg_start).
141                         ' - '. time2str('%x', $pkg_end  ). ')'
142           if $recur_charge;
143
144         $pkg_charge += $recur_charge;
145
146         push @$details, $pkg_details
147           if $pkg_charge;
148         $total_agent_charge += $pkg_charge;
149
150       } #foreach $cust_pkg
151
152     } #foreach $cust_main
153
154   } #foreach $agent;
155
156   my $charges = $total_agent_charge + $self->SUPER::calc_recur(@_); #prorate
157
158   sprintf('%.2f', $charges );
159
160 }
161
162 sub can_discount { 0; }
163
164 sub hide_svc_detail { 1; }
165
166 sub is_free { 0; }
167
168 sub can_usageprice { 0; }
169
170 1;
171