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