f007029d6c6a48d0048a2a5d7150c9814b99bbc7
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
1 package FS::part_pkg::voip_cdr;
2 use base qw( FS::part_pkg::recur_Common );
3
4 use strict;
5 use vars qw( $DEBUG %info );
6 use Tie::IxHash;
7 use Date::Format;
8 use Text::CSV_XS;
9 use FS::Conf;
10 use FS::Record qw(qsearchs qsearch);
11 use FS::cdr;
12 use FS::detail_format;
13
14 $DEBUG = 0;
15
16 tie my %cdr_svc_method, 'Tie::IxHash',
17   'svc_phone.phonenum' => 'Phone numbers (svc_phone.phonenum)',
18   'svc_pbx.title'      => 'PBX name (svc_pbx.title)',
19   'svc_pbx.svcnum'     => 'Freeside service # (svc_pbx.svcnum)',
20   'svc_pbx.ip.src'     => 'PBX name to source IP address',
21   'svc_pbx.ip.dst'     => 'PBX name to destination IP address',
22 ;
23
24 tie my %rating_method, 'Tie::IxHash',
25   'prefix' => 'Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables',
26 #  'upstream' => 'Rate calls based on upstream data: If the call type is "1", map the upstream rate ID directly to an internal rate (rate_detail), otherwise, pass the upstream price through directly.',
27   'upstream_simple' => 'Simply pass through and charge the "upstream_price" amount.',
28   'single_price' => 'A single price per minute for all calls.',
29 ;
30
31 tie my %rounding, 'Tie::IxHash',
32   '2' => 'Two decimal places (cent)',
33   '4' => 'Four decimal places (100th of a cent)',
34 ;
35
36 #tie my %cdr_location, 'Tie::IxHash',
37 #  'internal' => 'Internal: CDR records imported into the internal CDR table',
38 #  'external' => 'External: CDR records queried directly from an external '.
39 #                'Asterisk (or other?) CDR table',
40 #;
41
42 tie my %temporalities, 'Tie::IxHash',
43   'upcoming'  => "Upcoming (future)",
44   'preceding' => "Preceding (past)",
45 ;
46
47 tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities();
48
49 # previously "1" was "ignore"
50 tie my %unrateable_opts, 'Tie::IxHash',
51   '' => 'Exit with a fatal error',
52   1  => 'Ignore and continue',
53   2  => 'Flag for later review',
54 ;
55
56 tie my %detail_formats, 'Tie::IxHash',
57   '' => '',
58   FS::cdr::invoice_formats()
59 ;
60
61 tie my %accountcode_tollfree_field, 'Tie::IxHash',
62   'dst' => 'Destination (dst)',
63   'src' => 'Source (src)',
64 ;
65
66 %info = (
67   'name' => 'VoIP rating by plan of CDR records in an internal (or external) SQL table',
68   'shortname' => 'VoIP/telco CDR rating (standard)',
69   'inherit_fields' => [ 'prorate_Mixin', 'global_Mixin' ],
70   'fields' => {
71     'suspend_bill' => { 'name' => 'Continue recurring billing while suspended',
72                         'type' => 'checkbox',
73                       },
74     #false laziness w/flat.pm
75     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
76                              'type' => 'select',
77                              'select_options' => \%temporalities,
78                            },
79
80     'cutoff_day'    => { 'name' => 'Billing Day (1 - 28) for prorating or '.
81                                    'subscription',
82                          'default' => '1',
83                        },
84     'recur_method'  => { 'name' => 'Recurring fee method',
85                          #'type' => 'radio',
86                          #'options' => \%recur_method,
87                          'type' => 'select',
88                          'select_options' => \%FS::part_pkg::recur_Common::recur_method,
89                        },
90
91     'cdr_svc_method' => { 'name' => 'CDR service matching method',
92 #                          'type' => 'radio',
93                           'type' => 'select',
94                           'select_options' => \%cdr_svc_method,
95                         },
96
97     'rating_method' => { 'name' => 'Rating method',
98                          'type' => 'radio',
99                          'options' => \%rating_method,
100                        },
101
102     'rounding' => { 'name' => 'Rounding for destination prefix rating',
103                     'type' => 'select',
104                     'select_options' => \%rounding,
105                   },
106
107     'ratenum'   => { 'name' => 'Rate plan',
108                      'type' => 'select-rate',
109                    },
110                    
111     'intrastate_ratenum'   => { 'name' => 'Optional alternate intrastate rate plan',
112                      'type' => 'select-rate',
113                      'disable_empty' => 0,
114                      'empty_label'   => ' ',
115                    },
116
117     'calls_included' => { 'name' => 'Number of calls included at no usage charge', },
118
119     'min_included' => { 'name' => 'Minutes included when using the "single price per minute" or "prefix" rating method',
120                     },
121
122     'min_charge' => { 'name' => 'Charge per minute when using "single price per minute" rating method',
123                     },
124
125     'sec_granularity' => { 'name' => 'Granularity when using "single price per minute" rating method',
126                            'type' => 'select',
127                            'select_options' => \%granularity,
128                          },
129
130     'ignore_unrateable' => { 'name' => 'Handling of calls without a rate in the rate table',
131                              'type' => 'select',
132                              'select_options' => \%unrateable_opts,
133                            },
134
135     'default_prefix' => { 'name'    => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
136                           'default' => '+1',
137                         },
138
139     'disable_src' => { 'name' => 'Disable rating of CDR records based on the "src" field in addition to "charged_party"',
140                        'type' => 'checkbox'
141                      },
142
143     'domestic_prefix' => { 'name'    => 'Destination prefix for domestic CDR records',
144                            'default' => '1',
145                          },
146
147 #    'domestic_prefix_required' => { 'name' => 'Require explicit destination prefix for domestic CDR records',
148 #                                    'type' => 'checkbox',
149 #                                  },
150
151     'international_prefix' => { 'name'    => 'Destination prefix for international CDR records',
152                                 'default' => '011',
153                               },
154
155     'disable_tollfree' => { 'name' => 'Disable automatic toll-free processing',
156                             'type' => 'checkbox',
157                           },
158
159     'use_amaflags' => { 'name' => 'Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").',
160                         'type' => 'checkbox',
161                       },
162
163     'use_carrierid' => { 'name' => 'Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: ',
164                          },
165
166     'use_cdrtypenum' => { 'name' => 'Only charge for CDRs where the CDR Type is set to this cdrtypenum: ',
167                          },
168     
169     'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to this cdrtypenum: ',
170                          },
171
172     'use_calltypenum' => { 'name' => 'Only charge for CDRs where the CDR Call Type is set to this calltypenum: ',
173                          },
174     
175     'ignore_calltypenum' => { 'name' => 'Do not charge for CDRs where the CDR Call Type is set to this calltypenum: ',
176                          },
177     
178     'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
179                          },
180     
181     'disposition_in' => { 'name' => 'Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
182                          },
183
184     'skip_dst_prefix' => { 'name' => 'Do not charge for CDRs where the destination number starts with any of these values: ',
185     },
186
187     'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: ',
188                        },
189
190     'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
191                                 },
192
193     'skip_src_length_more' => { 'name' => 'Do not charge for CDRs where the source is more than this many digits:',
194                               },
195
196     'noskip_src_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where source is equal or greater than the specified digits, when accountcode is toll free',
197                                                   'type' => 'checkbox',
198                                                 },
199
200     'accountcode_tollfree_ratenum' => {
201       'name' => 'Optional alternate rate plan when accountcode is toll free: ',
202       'type' => 'select',
203       'select_table'  => 'rate',
204       'select_key'    => 'ratenum',
205       'select_label'  => 'ratename',
206       'disable_empty' => 0,
207       'empty_label'   => '',
208     },
209
210     'accountcode_tollfree_field' => {
211       'name'           => 'When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations',
212       'type'           => 'select',
213       'select_options' => \%accountcode_tollfree_field,
214     },
215
216     'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
217                               },
218
219     'noskip_dst_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free',
220                                                   'type' => 'checkbox',
221                                                 },
222
223     'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value: ',
224                       },
225
226     'skip_max_callers' => { 'name' => 'Do not charge for CDRs where max_callers is less than or equal to this value: ',
227                           },
228
229     'skip_same_customer' => {
230       'name' => 'Do not charge for calls between numbers belonging to the same customer',
231       'type' => 'checkbox',
232     },
233
234     'use_duration'   => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
235                           'type' => 'checkbox',
236                         },
237
238     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): ',
239                       },
240
241     #false laziness w/cdr_termination.pm
242     'output_format' => { 'name' => 'CDR display format for invoices',
243                          'type' => 'select',
244                          'select_options' => \%detail_formats,
245                          'default'        => 'default', #XXX test
246                        },
247
248     'selfservice_format' => 
249       { 'name' => 'CDR display format for selfservice',
250         'type' => 'select',
251         'select_options' => \%detail_formats,
252         'default' => 'default'
253       },
254     'selfservice_inbound_format' =>
255       { 'name' => 'Inbound CDR display format for selfservice',
256         'type' => 'select',
257         'select_options' => \%detail_formats,
258         'default' => ''
259       },
260
261     'usage_section' => { 'name' => 'Section in which to place usage charges (whether separated or not): ',
262                        },
263
264     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
265                           'type' => 'checkbox',
266                         },
267
268     'usage_mandate' => { 'name' => 'Always put usage details in separate section.  The section is defined in the next option.',
269                           'type' => 'checkbox',
270                        },
271     #eofalse
272
273     'usage_showzero' => { 'name' => 'Show details for included / no-charge calls.',
274                         'type' => 'checkbox',
275                       },
276
277     'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call (as well any setup fee, upon first payment).  Useful for prepaid.',
278                            'type' => 'checkbox',
279                          },
280
281     'bill_inactive_svcs' => { 'name' => 'Bill for all phone numbers that were active during the billing period',
282                               'type' => 'checkbox',
283                             },
284
285     'count_available_phones' => { 'name' => 'Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.',
286                            'type' => 'checkbox',
287                          },
288
289     #XXX also have option for an external db?  these days we suck them into ours
290 #    'cdr_location' => { 'name' => 'CDR database location'
291 #                        'type' => 'select',
292 #                        'select_options' => \%cdr_location,
293 #                        'select_callback' => {
294 #                          'external' => {
295 #                            'enable' => [ 'datasrc', 'username', 'password' ],
296 #                          },
297 #                          'internal' => {
298 #                            'disable' => [ 'datasrc', 'username', 'password' ],
299 #                          }
300 #                        },
301 #                      },
302 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
303 #                   'disabled' => 'Y',
304 #                 },
305 #    'username' => { 'name' => 'External database username',
306 #                    'disabled' => 'Y',
307 #                  },
308 #    'password' => { 'name' => 'External database password',
309 #                    'disabled' => 'Y',
310 #                  },
311
312   },
313   'fieldorder' => [qw(
314                        recur_temporality
315                        recur_method cutoff_day ),
316                        FS::part_pkg::prorate_Mixin::fieldorder,
317                     qw(
318                        cdr_svc_method
319                        rating_method rounding ratenum intrastate_ratenum 
320                        calls_included
321                        min_charge min_included sec_granularity
322                        ignore_unrateable
323                        default_prefix
324                        disable_src
325                        domestic_prefix international_prefix
326                        disable_tollfree
327                        use_amaflags
328                        use_carrierid 
329                        use_cdrtypenum ignore_cdrtypenum
330                        use_calltypenum ignore_calltypenum
331                        ignore_disposition disposition_in
332                        skip_dcontext skip_dst_prefix 
333                        skip_dstchannel_prefix skip_src_length_more 
334                        noskip_src_length_accountcode_tollfree
335                        accountcode_tollfree_ratenum accountcode_tollfree_field
336                        skip_dst_length_less
337                        noskip_dst_length_accountcode_tollfree
338                        skip_lastapp
339                        skip_max_callers
340                        skip_same_customer
341                        use_duration
342                        411_rewrite
343                        output_format 
344                        selfservice_format selfservice_inbound_format
345                        usage_mandate usage_section summarize_usage 
346                        usage_showzero bill_every_call bill_inactive_svcs
347                        count_available_phones suspend_bill 
348                      )
349                   ],
350   'weight' => 41,
351 );
352
353 sub price_info {
354     my $self = shift;
355     my $str = $self->SUPER::price_info(@_);
356     $str .= " plus usage" if $str;
357     $str;
358 }
359
360 sub calc_recur {
361   my $self = shift;
362   my($cust_pkg, $sdate, $details, $param ) = @_;
363
364   my $charges = 0;
365
366   $charges += $self->calc_usage(@_);
367   $charges += ($cust_pkg->quantity || 1) * $self->calc_recur_Common(@_);
368
369   $charges;
370
371 }
372
373 # use the default
374 #sub calc_cancel {
375 #  my $self = shift;
376 #  my($cust_pkg, $sdate, $details, $param ) = @_;
377 #
378 #  $self->calc_usage(@_);
379 #}
380
381 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
382
383 sub calc_usage {
384   my $self = shift;
385   my($cust_pkg, $sdate, $details, $param ) = @_;
386
387   #my $last_bill = $cust_pkg->last_bill;
388   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
389
390   return 0
391     if $self->recur_temporality eq 'preceding'
392     && ( $last_bill eq '' || $last_bill == 0 );
393
394   my $charges = 0;
395
396   my $included_min = $self->option('min_included', 1) || 0;
397     #single price rating
398     #or region group
399
400   my $included_calls = $self->option('calls_included', 1) || 0;
401
402   my $cdr_svc_method    = $self->option('cdr_svc_method',1)||'svc_phone.phonenum';
403   my $rating_method     = $self->option('rating_method') || 'prefix';
404   my %detail_included_min = ();
405
406   my $output_format     = $self->option('output_format', 'Hush!')
407                           || ( $rating_method eq 'upstream_simple'
408                                  ? 'simple'
409                                  : 'default'
410                              );
411
412   my $usage_showzero    = $self->option('usage_showzero', 1);
413
414   my $formatter = FS::detail_format->new($output_format,
415     buffer => $details,
416     locale => $cust_pkg->cust_main->locale
417   );
418
419   my $use_duration = $self->option('use_duration');
420
421   my($svc_table, $svc_field, $by_ip_addr) = split('\.', $cdr_svc_method);
422
423   my @cust_svc;
424   if( $self->option('bill_inactive_svcs',1) ) {
425     #XXX in this mode do we need to restrict the set of CDRs by date also?
426     @cust_svc = $cust_pkg->h_cust_svc($$sdate, $last_bill);
427   }
428   else {
429     @cust_svc = $cust_pkg->cust_svc;
430   }
431   @cust_svc = grep { $_->part_svc->svcdb eq $svc_table } @cust_svc;
432
433   foreach my $cust_svc (@cust_svc) {
434
435     my $svc_x;
436     if( $self->option('bill_inactive_svcs',1) ) {
437       $svc_x = $cust_svc->h_svc_x($$sdate, $last_bill);
438     }
439     else {
440       $svc_x = $cust_svc->svc_x;
441     }
442
443     unless ( $svc_x ) {
444       my $h = $self->option('bill_inactive_svcs',1) ? 'h_' : '';
445       warn "WARNING: no $h$svc_table for svcnum ". $cust_svc->svcnum. "\n";
446     }
447
448     my %options = (
449         'disable_src'    => $self->option('disable_src',1),
450         'default_prefix' => $self->option('default_prefix',1),
451         'cdrtypenum'     => $self->option('use_cdrtypenum',1),
452         'calltypenum'    => $self->option('use_calltypenum',1),
453         'status'         => '',
454         'for_update'     => 1,
455       );  # $last_bill, $$sdate )
456     if ( $svc_field eq 'svcnum' ) {
457       $options{'by_svcnum'} = 1;
458     }
459     elsif ($svc_table eq 'svc_pbx' and $svc_field eq 'ip') {
460       $options{'by_ip_addr'} = $by_ip_addr;
461     }
462
463     #my @invoice_details_sort;
464
465     # for tagging invoice details
466     my $phonenum;
467     if ( $svc_table eq 'svc_phone' ) {
468       $phonenum = $svc_x->phonenum;
469     } elsif ( $svc_table eq 'svc_pbx' ) {
470       $phonenum = $svc_x->title;
471     }
472     $formatter->phonenum($phonenum);
473
474     #first rate any outstanding CDRs not yet rated
475     # XXX eventually use an FS::Cursor for this
476     my $cdr_search = $svc_x->psearch_cdrs(%options);
477     $cdr_search->limit(1000);
478     $cdr_search->increment(0); # because we're changing their status as we go
479     while ( my $cdr = $cdr_search->fetch ) {
480
481       my $error = $cdr->rate(
482         'part_pkg'                          => $self,
483         'cust_pkg'                          => $cust_pkg,
484         'svcnum'                            => $svc_x->svcnum,
485         'plan_included_min'                 => \$included_min,
486         'detail_included_min_hashref'       => \%detail_included_min,
487       );
488       die $error if $error; #??
489
490       $cdr_search->adjust(1) if $cdr->freesidestatus eq '';
491       # it was skipped without changing status, so increment the 
492       # offset so that we don't re-fetch it on refill
493
494     } # $cdr
495
496     #then add details to invoices & get a total
497     $options{'status'} = 'rated';
498
499     $cdr_search = $svc_x->psearch_cdrs(%options);
500     $cdr_search->limit(1000);
501     $cdr_search->increment(0);
502     while ( my $cdr = $cdr_search->fetch ) {
503       my $error;
504       # at this point we officially Do Not Care about the rating method
505       if ( $included_calls > 0 ) {
506         $included_calls--;
507         #$charges += 0, obviously
508         #but don't set the rated price to zero--there should be a record
509         $error = $cdr->set_status('no-charge');
510       }
511       else {
512         $charges += $cdr->rated_price;
513         $error = $cdr->set_status('done');
514       }
515       die $error if $error;
516       $formatter->append($cdr)
517         unless $cdr->rated_price == 0 and not $usage_showzero;
518
519       $cdr_search->adjust(1) if $cdr->freesidestatus eq 'rated';
520     } #$cdr
521   }
522
523   $formatter->finish; #writes into $details
524   unshift @$details, $formatter->header if @$details;
525
526   $charges;
527 }
528
529 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
530 # lots of false laziness w/voip_inbound
531 sub check_chargable {
532   my( $self, $cdr, %flags ) = @_;
533
534   return 'amaflags != 2'
535     if $self->option_cacheable('use_amaflags') && $cdr->amaflags != 2;
536
537   return "disposition NOT IN ( ". $self->option_cacheable('disposition_in')." )"
538     if $self->option_cacheable('disposition_in') =~ /\S/
539     && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('disposition_in'));
540   
541   return "disposition IN ( ". $self->option_cacheable('ignore_disposition')." )"
542     if $self->option_cacheable('ignore_disposition') =~ /\S/
543     && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('ignore_disposition'));
544
545   foreach(split(/\s*,\s*/, $self->option_cacheable('skip_dst_prefix'))) {
546     return "dst starts with '$_'"
547     if length($_) && substr($cdr->dst,0,length($_)) eq $_;
548   }
549
550   return "carrierid NOT IN ( ". $self->option_cacheable('use_carrierid'). " )"
551     if $self->option_cacheable('use_carrierid') =~ /\S/
552     && ! $flags{'da_rewrote'} #why?
553     && !grep { $cdr->carrierid eq $_ } split(/\s*,\s*/, $self->option_cacheable('use_carrierid')); #eq otherwise 0 matches ''
554
555   # unlike everything else, use_cdrtypenum is applied in FS::svc_x::get_cdrs.
556   return "cdrtypenum != ". $self->option_cacheable('use_cdrtypenum')
557     if length($self->option_cacheable('use_cdrtypenum'))
558     && $cdr->cdrtypenum ne $self->option_cacheable('use_cdrtypenum'); #ne otherwise 0 matches ''
559   
560   return "cdrtypenum == ". $self->option_cacheable('ignore_cdrtypenum')
561     if length($self->option_cacheable('ignore_cdrtypenum'))
562     && $cdr->cdrtypenum eq $self->option_cacheable('ignore_cdrtypenum'); #eq otherwise 0 matches ''
563
564   # unlike everything else, use_calltypenum is applied in FS::svc_x::get_cdrs.
565   return "calltypenum != ". $self->option_cacheable('use_calltypenum')
566     if length($self->option_cacheable('use_calltypenum'))
567     && $cdr->calltypenum ne $self->option_cacheable('use_calltypenum'); #ne otherwise 0 matches ''
568   
569   return "calltypenum == ". $self->option_cacheable('ignore_calltypenum')
570     if length($self->option_cacheable('ignore_calltypenum'))
571     && $cdr->calltypenum eq $self->option_cacheable('ignore_calltypenum'); #eq otherwise 0 matches ''
572
573   return "dcontext IN ( ". $self->option_cacheable('skip_dcontext'). " )"
574     if $self->option_cacheable('skip_dcontext') =~ /\S/
575     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $self->option_cacheable('skip_dcontext'));
576
577   my $len_prefix = length($self->option_cacheable('skip_dstchannel_prefix'));
578   return "dstchannel starts with ". $self->option_cacheable('skip_dstchannel_prefix')
579     if $len_prefix
580     && substr($cdr->dstchannel,0,$len_prefix) eq $self->option_cacheable('skip_dstchannel_prefix');
581
582   my $dst_length = $self->option_cacheable('skip_dst_length_less');
583   return "destination less than $dst_length digits"
584     if $dst_length && length($cdr->dst) < $dst_length
585     && ! ( $self->option_cacheable('noskip_dst_length_accountcode_tollfree')
586             && $cdr->is_tollfree('accountcode')
587          );
588
589   return "lastapp is ". $self->option_cacheable('skip_lastapp')
590     if length($self->option_cacheable('skip_lastapp')) && $cdr->lastapp eq $self->option_cacheable('skip_lastapp');
591
592   my $src_length = $self->option_cacheable('skip_src_length_more');
593   if ( $src_length ) {
594
595     if ( $self->option_cacheable('noskip_src_length_accountcode_tollfree') ) {
596
597       if ( $cdr->is_tollfree('accountcode') ) {
598         return "source less than or equal to $src_length digits"
599           if length($cdr->src) <= $src_length;
600       } else {
601         return "source more than $src_length digits"
602           if length($cdr->src) > $src_length;
603       }
604
605     } else {
606       return "source more than $src_length digits"
607         if length($cdr->src) > $src_length;
608     }
609
610   }
611
612   return "max_callers <= ". $self->option_cacheable('skip_max_callers')
613     if length($self->option_cacheable('skip_max_callers'))
614       and length($cdr->max_callers)
615       and $cdr->max_callers <= $self->option_cacheable('skip_max_callers');
616
617   #all right then, rate it
618   '';
619 }
620
621 sub is_free {
622   0;
623 }
624
625 #  This equates svc_phone records; perhaps svc_phone should have a field
626 #  to indicate it represents a line
627 sub calc_units {    
628   my($self, $cust_pkg ) = @_;
629   my $count = 0;
630   if ( $self->option('count_available_phones', 1)) {
631     foreach my $pkg_svc ($cust_pkg->part_pkg->pkg_svc) {
632       if ($pkg_svc->part_svc->svcdb eq 'svc_phone') { # svc_pbx?
633         $count += $pkg_svc->quantity || 0;
634       }
635     }
636     $count *= $cust_pkg->quantity;
637   } else {
638     $count = 
639       scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
640   }
641   $count;
642 }
643
644 sub reset_usage {
645   my ($self, $cust_pkg, %opt) = @_;
646   my @part_pkg_usage = $self->part_pkg_usage or return '';
647   warn "  resetting usage minutes\n" if $opt{debug};
648   my %cust_pkg_usage = map { $_->pkgusagepart, $_ } $cust_pkg->cust_pkg_usage;
649   foreach my $part_pkg_usage (@part_pkg_usage) {
650     my $part = $part_pkg_usage->pkgusagepart;
651     my $usage = $cust_pkg_usage{$part} ||
652                 FS::cust_pkg_usage->new({
653                     'pkgnum'        => $cust_pkg->pkgnum,
654                     'pkgusagepart'  => $part,
655                     'minutes'       => $part_pkg_usage->minutes,
656                 });
657     foreach my $cdr_usage (
658       qsearch('cdr_cust_pkg_usage', {'cdrusagenum' => $usage->cdrusagenum})
659     ) {
660       my $error = $cdr_usage->delete;
661       warn "  error resetting CDR usage: $error\n";
662     }
663
664     if ( $usage->pkgusagenum ) {
665       if ( $part_pkg_usage->rollover ) {
666         $usage->set('minutes', $part_pkg_usage->minutes + $usage->minutes);
667       } else {
668         $usage->set('minutes', $part_pkg_usage->minutes);
669       }
670       my $error = $usage->replace;
671       warn "  error resetting usage minutes: $error\n" if $error;
672     } else {
673       my $error = $usage->insert;
674       warn "  error resetting usage minutes: $error\n" if $error;
675     }
676   } #foreach $part_pkg_usage
677 }
678
679 # tells whether cust_bill_pkg_detail should return a single line for 
680 # each phonenum
681 # i think this is currently unused?
682 sub sum_usage {
683   my $self = shift;
684   $self->option('output_format') =~ /^sum_/;
685 }
686
687 # and whether cust_bill should show a detail line for the service label 
688 # (separate from usage details)
689 sub hide_svc_detail {
690   my $self = shift;
691   $self->option('output_format') =~ /^sum_/;
692 }
693
694
695 1;
696