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