add option to only charge for CDRs starting with a disposition prefix, RT#73195
[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 (or "none" for no prefix)',
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     'disposition_prefix' => { 'name' => 'Only charge for CDRs where the Disposition starts with: ',
186                          },
187
188     'skip_dst_prefix' => { 'name' => 'Do not charge for CDRs where the destination number starts with any of these (comma-separated) values: ',
189     },
190
191     'skip_dcontext' => { 'name' => 'Do not charge for CDRs where dcontext is set to any of these (comma-separated) values: ',
192                        },
193
194     'skip_dcontext_suffix' => { 'name' => 'Do not charge for CDRs where dcontext ends with: ',
195                        },
196
197     'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
198                                 },
199
200     'skip_src_length_more' => { 'name' => 'Do not charge for CDRs where the source is more than this many digits:',
201                               },
202
203     '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',
204                                                   'type' => 'checkbox',
205                                                 },
206
207     'accountcode_tollfree_ratenum' => {
208       'name' => 'Optional alternate rate plan when accountcode is toll free: ',
209       'type' => 'select',
210       'select_table'  => 'rate',
211       'select_key'    => 'ratenum',
212       'select_label'  => 'ratename',
213       'disable_empty' => 0,
214       'empty_label'   => '',
215     },
216
217     'accountcode_tollfree_field' => {
218       'name'           => 'When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations',
219       'type'           => 'select',
220       'select_options' => \%accountcode_tollfree_field,
221     },
222
223     'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
224                               },
225
226     'noskip_dst_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free',
227                                                   'type' => 'checkbox',
228                                                 },
229
230     'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value: ',
231                       },
232
233     'skip_max_callers' => { 'name' => 'Do not charge for CDRs where max_callers is less than or equal to this value: ',
234                           },
235
236     'skip_same_customer' => {
237       'name' => 'Do not charge for calls between numbers belonging to the same customer',
238       'type' => 'checkbox',
239     },
240
241     'use_duration'   => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
242                           'type' => 'checkbox',
243                         },
244
245     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): ',
246                       },
247
248     #false laziness w/cdr_termination.pm
249     'output_format' => { 'name' => 'CDR display format for invoices',
250                          'type' => 'select',
251                          'select_options' => \%detail_formats,
252                          'default'        => 'default', #XXX test
253                        },
254
255     'selfservice_format' => 
256       { 'name' => 'CDR display format for selfservice',
257         'type' => 'select',
258         'select_options' => \%detail_formats,
259         'default' => 'default'
260       },
261     'selfservice_inbound_format' =>
262       { 'name' => 'Inbound CDR display format for selfservice',
263         'type' => 'select',
264         'select_options' => \%detail_formats,
265         'default' => ''
266       },
267
268     'usage_section' => { 'name' => 'Section in which to place usage charges (whether separated or not): ',
269                        },
270
271     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
272                           'type' => 'checkbox',
273                         },
274
275     'usage_mandate' => { 'name' => 'Always put usage details in separate section.  The section is defined in the next option.',
276                           'type' => 'checkbox',
277                        },
278     #eofalse
279
280     'usage_showzero' => { 'name' => 'Show details for included / no-charge calls.',
281                         'type' => 'checkbox',
282                       },
283
284     'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call (as well any setup fee, upon first payment).  Useful for prepaid.',
285                            'type' => 'checkbox',
286                          },
287
288     'bill_inactive_svcs' => { 'name' => 'Bill for all phone numbers that were active during the billing period',
289                               'type' => 'checkbox',
290                             },
291     'bill_only_pkg_dates' => { 'name' => 'Only bill CDRs with a date during the package billing period',
292                                'type' => 'checkbox',
293                              },
294
295     #XXX also have option for an external db?  these days we suck them into ours
296 #    'cdr_location' => { 'name' => 'CDR database location'
297 #                        'type' => 'select',
298 #                        'select_options' => \%cdr_location,
299 #                        'select_callback' => {
300 #                          'external' => {
301 #                            'enable' => [ 'datasrc', 'username', 'password' ],
302 #                          },
303 #                          'internal' => {
304 #                            'disable' => [ 'datasrc', 'username', 'password' ],
305 #                          }
306 #                        },
307 #                      },
308 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
309 #                   'disabled' => 'Y',
310 #                 },
311 #    'username' => { 'name' => 'External database username',
312 #                    'disabled' => 'Y',
313 #                  },
314 #    'password' => { 'name' => 'External database password',
315 #                    'disabled' => 'Y',
316 #                  },
317
318   },
319   'fieldorder' => [qw(
320                        recur_temporality
321                        recur_method cutoff_day ),
322                        FS::part_pkg::prorate_Mixin::fieldorder,
323                     qw(
324                        cdr_svc_method
325                        rating_method rounding ratenum intrastate_ratenum 
326                        calls_included
327                        min_charge min_included
328                        sec_granularity
329                        ignore_unrateable
330                        default_prefix
331                        disable_src
332                        domestic_prefix international_prefix
333                        disable_tollfree
334                        use_amaflags
335                        use_carrierid 
336                        use_cdrtypenum ignore_cdrtypenum
337                        use_calltypenum ignore_calltypenum
338                        ignore_disposition disposition_in disposition_prefix
339                        skip_dcontext skip_dcontext_suffix skip_dst_prefix 
340                        skip_dstchannel_prefix skip_src_length_more 
341                        noskip_src_length_accountcode_tollfree
342                        accountcode_tollfree_ratenum accountcode_tollfree_field
343                        skip_dst_length_less
344                        noskip_dst_length_accountcode_tollfree
345                        skip_lastapp
346                        skip_max_callers
347                        skip_same_customer
348                        use_duration
349                        411_rewrite
350                        output_format 
351                        selfservice_format selfservice_inbound_format
352                        usage_mandate usage_section summarize_usage 
353                        usage_showzero bill_every_call bill_inactive_svcs
354                        bill_only_pkg_dates
355                        suspend_bill 
356                      )
357                   ],
358   'weight' => 41,
359 );
360
361 sub price_info {
362     my $self = shift;
363     my $str = $self->SUPER::price_info(@_);
364     $str .= " plus usage" if $str;
365     $str;
366 }
367
368 sub calc_recur {
369   my $self = shift;
370   my($cust_pkg, $sdate, $details, $param ) = @_;
371
372   my $charges = 0;
373
374   $charges += $self->calc_usage(@_);
375   $charges += ($cust_pkg->quantity || 1) * $self->calc_recur_Common(@_);
376
377   $charges;
378
379 }
380
381 # use the default
382 #sub calc_cancel {
383 #  my $self = shift;
384 #  my($cust_pkg, $sdate, $details, $param ) = @_;
385 #
386 #  $self->calc_usage(@_);
387 #}
388
389 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
390
391 sub calc_usage {
392   my $self = shift;
393   my($cust_pkg, $sdate, $details, $param ) = @_;
394
395   #my $last_bill = $cust_pkg->last_bill;
396   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
397
398   return 0
399     if $self->recur_temporality eq 'preceding'
400     && ( $last_bill eq '' || $last_bill == 0 );
401
402   my $charges = 0;
403
404   my $included_min_total = ($self->option('min_included', 1) || 0)
405                            * ($cust_pkg->quantity || 1);
406     #single price rating
407     #or region group
408   my $included_min_left = $included_min_total;
409
410   my $included_calls = $self->option('calls_included', 1) || 0;
411   $included_calls *= ($cust_pkg->quantity || 1);
412
413   my $cdr_svc_method    = $self->option('cdr_svc_method',1)||'svc_phone.phonenum';
414   my $rating_method     = $self->option('rating_method') || 'prefix';
415   my %detail_included_min = ();
416
417   my $output_format     = $self->option('output_format', 'Hush!')
418                           || ( $rating_method eq 'upstream_simple'
419                                  ? 'simple'
420                                  : 'default'
421                              );
422
423   my $usage_showzero    = $self->option('usage_showzero', 1);
424
425   my $formatter = FS::detail_format->new($output_format,
426     buffer => $details,
427     locale => $cust_pkg->cust_main->locale,
428     rounding  => ($self->option_cacheable('rounding') || 2),
429   );
430
431   my $use_duration = $self->option('use_duration');
432
433   my($svc_table, $svc_field, $by_ip_addr) = split('\.', $cdr_svc_method);
434
435   my @cust_svc;
436   if( $self->option('bill_inactive_svcs',1) ) {
437     #XXX in this mode do we need to restrict the set of CDRs by date also?
438     @cust_svc = $cust_pkg->h_cust_svc($$sdate, $last_bill);
439   }
440   else {
441     @cust_svc = $cust_pkg->cust_svc;
442   }
443   @cust_svc = grep { $_->part_svc->svcdb eq $svc_table } @cust_svc;
444
445   foreach my $cust_svc (@cust_svc) {
446
447     my $svc_x;
448     if( $self->option('bill_inactive_svcs',1) ) {
449       $svc_x = $cust_svc->h_svc_x($$sdate, $last_bill);
450     }
451     else {
452       $svc_x = $cust_svc->svc_x;
453     }
454
455     unless ( $svc_x ) {
456       my $h = $self->option('bill_inactive_svcs',1) ? 'h_' : '';
457       warn "WARNING: no $h$svc_table for svcnum ". $cust_svc->svcnum. "\n";
458     }
459
460     my %options = (
461         'disable_src'    => $self->option('disable_src',1),
462         'default_prefix' => $self->option('default_prefix',1),
463         'cdrtypenum'     => $self->option('use_cdrtypenum',1),
464         'calltypenum'    => $self->option('use_calltypenum',1),
465         'status'         => '',
466         'for_update'     => 1,
467     );
468     if ( $self->option('bill_only_pkg_dates') ) {
469       $options{'begin'} = $last_bill;
470       $options{'end'}   = $$sdate;
471     }
472     if ( $svc_field eq 'svcnum' ) {
473       $options{'by_svcnum'} = 1;
474     } elsif ($svc_table eq 'svc_pbx' and $svc_field eq 'ip') {
475       $options{'by_ip_addr'} = $by_ip_addr;
476     }
477
478     #my @invoice_details_sort;
479
480     # for tagging invoice details
481     # (unfortunate; should be a svc_x class method or table_info item or 
482     # something)
483     my $phonenum;
484     if ( $svc_table eq 'svc_phone' ) {
485       $phonenum = $svc_x->phonenum;
486     } elsif ( $svc_table eq 'svc_pbx' ) {
487       $phonenum = $svc_x->title;
488     } elsif ( $svc_table eq 'svc_acct' ) {
489       $phonenum = $svc_x->username;
490     }
491     $formatter->phonenum($phonenum);
492
493     #first rate any outstanding CDRs not yet rated
494     # use FS::Cursor for this starting in 4.x
495     my $cdr_search = $svc_x->psearch_cdrs(%options);
496     $cdr_search->limit(1000);
497     $cdr_search->increment(0); # because we're changing their status as we go
498     while ( my $cdr = $cdr_search->fetch ) {
499
500       my $error = $cdr->rate(
501         'part_pkg'                          => $self,
502         'cust_pkg'                          => $cust_pkg,
503         'svcnum'                            => $svc_x->svcnum,
504         'plan_included_min'                 => \$included_min_left,
505         'detail_included_min_hashref'       => \%detail_included_min,
506       );
507       die $error if $error; #??
508
509       $cdr_search->adjust(1) if $cdr->freesidestatus eq '';
510       # it was skipped without changing status, so increment the 
511       # offset so that we don't re-fetch it on refill
512
513     } # $cdr
514
515     #then add details to invoices & get a total
516     $options{'status'} = 'rated';
517
518     $cdr_search = $svc_x->psearch_cdrs(%options);
519     $cdr_search->limit(1000);
520     $cdr_search->increment(0);
521     while ( my $cdr = $cdr_search->fetch ) {
522       my $error;
523       # at this point we officially Do Not Care about the rating method
524       if ( $included_calls > 0 ) {
525         $included_calls--;
526         #$charges += 0, obviously
527         #but don't set the rated price to zero--there should be a record
528         $error = $cdr->set_status('no-charge');
529       }
530       else {
531         $charges += $cdr->rated_price;
532         $error = $cdr->set_status('done');
533       }
534       die $error if $error;
535       $formatter->append($cdr)
536         unless $cdr->rated_price == 0 and not $usage_showzero;
537
538       $cdr_search->adjust(1) if $cdr->freesidestatus eq 'rated';
539     } #$cdr
540   }
541
542   $formatter->finish; #writes into $details
543   unshift @$details, $formatter->header if @$details;
544
545   if ( $included_min_total > 0 ) {
546
547     my $min_detail = sprintf('%d / %d ',
548                        $included_min_total - $included_min_left,
549                        $included_min_total
550                      ) .  $cust_pkg->mt('included minutes used');
551     unshift @$details, $min_detail;
552   }
553
554   $charges;
555 }
556
557 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
558 # lots of false laziness w/voip_inbound
559 sub check_chargable {
560   my( $self, $cdr, %flags ) = @_;
561
562   return 'amaflags != 2'
563     if $self->option_cacheable('use_amaflags') && $cdr->amaflags != 2;
564
565   return "disposition NOT IN ( ". $self->option_cacheable('disposition_in')." )"
566     if $self->option_cacheable('disposition_in') =~ /\S/
567     && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('disposition_in'));
568
569   my $disposition_prefix = $self->option_cacheable('disposition_prefix');
570   my $len_dis_prefix = length($disposition_prefix);
571   return "disposition does not start with $disposition_prefix"
572     if $len_dis_prefix
573     && substr($cdr->disposition, 0, $len_dis_prefix) ne $disposition_prefix;
574
575   return "disposition IN ( ". $self->option_cacheable('ignore_disposition')." )"
576     if $self->option_cacheable('ignore_disposition') =~ /\S/
577     && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('ignore_disposition'));
578
579   foreach(split(/\s*,\s*/, $self->option_cacheable('skip_dst_prefix'))) {
580     return "dst starts with '$_'"
581     if length($_) && substr($cdr->dst,0,length($_)) eq $_;
582   }
583
584   return "carrierid NOT IN ( ". $self->option_cacheable('use_carrierid'). " )"
585     if $self->option_cacheable('use_carrierid') =~ /\S/
586     && ! $flags{'da_rewrote'} #why?
587     && !grep { $cdr->carrierid eq $_ } split(/\s*,\s*/, $self->option_cacheable('use_carrierid')); #eq otherwise 0 matches ''
588
589   # unlike everything else, use_cdrtypenum is applied in FS::svc_x::get_cdrs.
590   return "cdrtypenum != ". $self->option_cacheable('use_cdrtypenum')
591     if length($self->option_cacheable('use_cdrtypenum'))
592     && $cdr->cdrtypenum ne $self->option_cacheable('use_cdrtypenum'); #ne otherwise 0 matches ''
593   
594   return "cdrtypenum == ". $self->option_cacheable('ignore_cdrtypenum')
595     if length($self->option_cacheable('ignore_cdrtypenum'))
596     && $cdr->cdrtypenum eq $self->option_cacheable('ignore_cdrtypenum'); #eq otherwise 0 matches ''
597
598   # unlike everything else, use_calltypenum is applied in FS::svc_x::get_cdrs.
599   return "calltypenum != ". $self->option_cacheable('use_calltypenum')
600     if length($self->option_cacheable('use_calltypenum'))
601     && $cdr->calltypenum ne $self->option_cacheable('use_calltypenum'); #ne otherwise 0 matches ''
602   
603   return "calltypenum == ". $self->option_cacheable('ignore_calltypenum')
604     if length($self->option_cacheable('ignore_calltypenum'))
605     && $cdr->calltypenum eq $self->option_cacheable('ignore_calltypenum'); #eq otherwise 0 matches ''
606
607   return "dcontext IN ( ". $self->option_cacheable('skip_dcontext'). " )"
608     if $self->option_cacheable('skip_dcontext') =~ /\S/
609     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $self->option_cacheable('skip_dcontext'));
610
611   my $len_suffix = length($self->option_cacheable('skip_dcontext_suffix'));
612   return "dcontext ends with ". $self->option_cacheable('skip_dcontext_suffix')
613     if $len_suffix
614     && substr($cdr->dcontext,-$len_suffix,$len_suffix) eq $self->option_cacheable('skip_dcontext_suffix');
615
616   my $len_prefix = length($self->option_cacheable('skip_dstchannel_prefix'));
617   return "dstchannel starts with ". $self->option_cacheable('skip_dstchannel_prefix')
618     if $len_prefix
619     && substr($cdr->dstchannel,0,$len_prefix) eq $self->option_cacheable('skip_dstchannel_prefix');
620
621   my $dst_length = $self->option_cacheable('skip_dst_length_less');
622   return "destination less than $dst_length digits"
623     if $dst_length && length($cdr->dst) < $dst_length
624     && ! ( $self->option_cacheable('noskip_dst_length_accountcode_tollfree')
625             && $cdr->is_tollfree('accountcode')
626          );
627
628   return "lastapp is ". $self->option_cacheable('skip_lastapp')
629     if length($self->option_cacheable('skip_lastapp')) && $cdr->lastapp eq $self->option_cacheable('skip_lastapp');
630
631   my $src_length = $self->option_cacheable('skip_src_length_more');
632   if ( $src_length ) {
633
634     if ( $self->option_cacheable('noskip_src_length_accountcode_tollfree') ) {
635
636       if ( $cdr->is_tollfree('accountcode') ) {
637         return "source less than or equal to $src_length digits"
638           if length($cdr->src) <= $src_length;
639       } else {
640         return "source more than $src_length digits"
641           if length($cdr->src) > $src_length;
642       }
643
644     } else {
645       return "source more than $src_length digits"
646         if length($cdr->src) > $src_length;
647     }
648
649   }
650
651   return "max_callers <= ". $self->option_cacheable('skip_max_callers')
652     if length($self->option_cacheable('skip_max_callers'))
653       and length($cdr->max_callers)
654       and $cdr->max_callers <= $self->option_cacheable('skip_max_callers');
655
656   #all right then, rate it
657   '';
658 }
659
660 sub is_free {
661   0;
662 }
663
664 sub reset_usage {
665   my ($self, $cust_pkg, %opt) = @_;
666   my @part_pkg_usage = $self->part_pkg_usage or return '';
667   warn "  resetting usage minutes\n" if $opt{debug};
668   my %cust_pkg_usage = map { $_->pkgusagepart, $_ } $cust_pkg->cust_pkg_usage;
669   foreach my $part_pkg_usage (@part_pkg_usage) {
670     my $part = $part_pkg_usage->pkgusagepart;
671     my $usage = $cust_pkg_usage{$part} ||
672                 FS::cust_pkg_usage->new({
673                     'pkgnum'        => $cust_pkg->pkgnum,
674                     'pkgusagepart'  => $part,
675                     'minutes'       => $part_pkg_usage->minutes *
676                                         ($cust_pkg->quantity || 1),
677                 });
678     foreach my $cdr_usage (
679       qsearch('cdr_cust_pkg_usage', {'cdrusagenum' => $usage->cdrusagenum})
680     ) {
681       my $error = $cdr_usage->delete;
682       warn "  error resetting CDR usage: $error\n";
683     }
684
685     if ( $usage->pkgusagenum ) {
686       if ( $part_pkg_usage->rollover ) {
687         $usage->set('minutes', $part_pkg_usage->minutes + $usage->minutes);
688       } else {
689         $usage->set('minutes', $part_pkg_usage->minutes);
690       }
691       my $error = $usage->replace;
692       warn "  error resetting usage minutes: $error\n" if $error;
693     } else {
694       my $error = $usage->insert;
695       warn "  error resetting usage minutes: $error\n" if $error;
696     }
697   } #foreach $part_pkg_usage
698 }
699
700 # tells whether cust_bill_pkg_detail should return a single line for 
701 # each phonenum
702 # i think this is currently unused?
703 sub sum_usage {
704   my $self = shift;
705   $self->option('output_format') =~ /^sum_/;
706 }
707
708 # and whether cust_bill should show a detail line for the service label 
709 # (separate from usage details)
710 sub hide_svc_detail {
711   my $self = shift;
712   $self->option('output_format') =~ /^sum_/;
713 }
714
715
716 1;
717