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