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