get rid of cdr_upstream_rate table and some other old convergent cruft
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
1 package FS::part_pkg::voip_cdr;
2
3 use strict;
4 use vars qw(@ISA $DEBUG %info);
5 use Date::Format;
6 use Tie::IxHash;
7 use Time::Local;
8 use FS::Conf;
9 use FS::Record qw(qsearchs qsearch);
10 use FS::part_pkg::flat;
11 use FS::cdr;
12 use FS::rate;
13 use FS::rate_prefix;
14 use FS::rate_detail;
15
16 @ISA = qw(FS::part_pkg::prorate);
17
18 $DEBUG = 0;
19
20 tie my %rating_method, 'Tie::IxHash',
21   'prefix' => 'Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables',
22 #  '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.',
23   'upstream_simple' => 'Simply pass through and charge the "upstream_price" amount.',
24   'flat' => 'A single price per minute for all calls.',
25 ;
26
27 tie my %recur_method, 'Tie::IxHash',
28   'anniversary' => 'Charge the recurring fee at the frequency specified above',
29   'prorate' => 'Charge a prorated fee the first time (selectable billing date)',
30   'subscription' => 'Charge the full fee for the first partial period (selectable billing date)',
31 ;
32
33 #tie my %cdr_location, 'Tie::IxHash',
34 #  'internal' => 'Internal: CDR records imported into the internal CDR table',
35 #  'external' => 'External: CDR records queried directly from an external '.
36 #                'Asterisk (or other?) CDR table',
37 #;
38
39 tie my %temporalities, 'Tie::IxHash',
40   'upcoming'  => "Upcoming (future)",
41   'preceding' => "Preceding (past)",
42 ;
43
44 %info = (
45   'name' => 'VoIP rating by plan of CDR records in an internal (or external) SQL table',
46   'shortname' => 'VoIP/telco CDR rating (standard)',
47   'fields' => {
48     'setup_fee'     => { 'name' => 'Setup fee for this package',
49                          'default' => 0,
50                        },
51     'recur_fee'     => { 'name' => 'Base recurring fee for this package',
52                          'default' => 0,
53                        },
54
55     #false laziness w/flat.pm
56     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
57                              'type' => 'select',
58                              'select_options' => \%temporalities,
59                            },
60
61     'unused_credit' => { 'name' => 'Credit the customer for the unused portion'.
62                                    ' of service at cancellation',
63                          'type' => 'checkbox',
64                        },
65
66     'cutoff_day'    => { 'name' => 'Billing Day (1 - 28) for prorating or '.
67                                    'subscription',
68                          'default' => '1',
69                        },
70
71     'recur_method'  => { 'name' => 'Recurring fee method',
72                          #'type' => 'radio',
73                          #'options' => \%recur_method,
74                          'type' => 'select',
75                          'select_options' => \%recur_method,
76                        },
77
78     'rating_method' => { 'name' => 'Region rating method',
79                          'type' => 'radio',
80                          'options' => \%rating_method,
81                        },
82
83     'ratenum'   => { 'name' => 'Rate plan',
84                      'type' => 'select',
85                      'select_table' => 'rate',
86                      'select_key'   => 'ratenum',
87                      'select_label' => 'ratename',
88                    },
89
90     'ignore_unrateable' => { 'name' => 'Ignore calls without a rate in the rate tables.  By default, the system will throw a fatal error upon encountering unrateable calls.',
91                              'type' => 'checkbox',
92                            },
93
94     'default_prefix' => { 'name'    => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
95                           'default' => '+1',
96                         },
97
98     'disable_src' => { 'name' => 'Disable rating of CDR records based on the "src" field in addition to "charged_party"',
99                        'type' => 'checkbox'
100                      },
101
102     'domestic_prefix' => { 'name'    => 'Destination prefix for domestic CDR records',
103                            'default' => '1',
104                          },
105
106 #    'domestic_prefix_required' => { 'name' => 'Require explicit destination prefix for domestic CDR records',
107 #                                    'type' => 'checkbox',
108 #                                  },
109
110     'international_prefix' => { 'name'    => 'Destination prefix for international CDR records',
111                                 'default' => '011',
112                               },
113
114     'disable_tollfree' => { 'name' => 'Disable automatic toll-free processing',
115                             'type' => 'checkbox',
116                           },
117
118     'use_amaflags' => { 'name' => 'Do not charge for CDRs where the amaflags field is not set to "2" ("BILL"/"BILLING").',
119                         'type' => 'checkbox',
120                       },
121
122     'use_disposition' => { 'name' => 'Do not charge for CDRs where the disposition flag is not set to "ANSWERED".',
123                            'type' => 'checkbox',
124                          },
125
126     'use_disposition_taqua' => { 'name' => 'Do not charge for CDRs where the disposition is not set to "100" (Taqua).',
127                                  'type' => 'checkbox',
128                                },
129
130     'use_carrierid' => { 'name' => 'Do not charge for CDRs where the Carrier ID is not set to: ',
131                          },
132
133     'use_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is not set to: ',
134                          },
135
136     'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values:',
137                        },
138
139     'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
140                                 },
141
142     'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
143                               },
144
145     'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value',
146                       },
147
148     'use_duration'   => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
149                           'type' => 'checkbox',
150                         },
151
152     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): ',
153                       },
154
155     'output_format' => { 'name' => 'CDR invoice display format',
156                          'type' => 'select',
157                          'select_options' => { FS::cdr::invoice_formats() },
158                          'default'        => 'default', #XXX test
159                        },
160
161     'usage_section' => { 'name' => 'Section in which to place separate usage charges',
162                        },
163
164     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
165                           'type' => 'checkbox',
166                         },
167
168     'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call.  Useful for prepaid.',
169                            'type' => 'checkbox',
170                          },
171
172     'count_available_phones' => { 'name' => 'Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.',
173                            'type' => 'checkbox',
174                          },
175
176     #XXX also have option for an external db
177 #    'cdr_location' => { 'name' => 'CDR database location'
178 #                        'type' => 'select',
179 #                        'select_options' => \%cdr_location,
180 #                        'select_callback' => {
181 #                          'external' => {
182 #                            'enable' => [ 'datasrc', 'username', 'password' ],
183 #                          },
184 #                          'internal' => {
185 #                            'disable' => [ 'datasrc', 'username', 'password' ],
186 #                          }
187 #                        },
188 #                      },
189 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
190 #                   'disabled' => 'Y',
191 #                 },
192 #    'username' => { 'name' => 'External database username',
193 #                    'disabled' => 'Y',
194 #                  },
195 #    'password' => { 'name' => 'External database password',
196 #                    'disabled' => 'Y',
197 #                  },
198
199   },
200   'fieldorder' => [qw(
201                        setup_fee recur_fee recur_temporality unused_credit
202                        recur_method cutoff_day
203                        rating_method ratenum ignore_unrateable
204                        default_prefix
205                        disable_src
206                        domestic_prefix international_prefix
207                        disable_tollfree
208                        use_amaflags use_disposition
209                        use_disposition_taqua use_carrierid use_cdrtypenum
210                        skip_dcontext skip_dstchannel_prefix
211                        skip_dst_length_less skip_lastapp
212                        use_duration
213                        411_rewrite
214                        output_format summarize_usage usage_section
215                        bill_every_call
216                        count_available_phones
217                      )
218                   ],
219   'weight' => 40,
220 );
221
222 sub calc_setup {
223   my($self, $cust_pkg ) = @_;
224   $self->option('setup_fee');
225 }
226
227 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
228 sub calc_recur {
229   my $self = shift;
230   my($cust_pkg, $sdate, $details, $param ) = @_;
231
232   #my $last_bill = $cust_pkg->last_bill;
233   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
234
235   return 0
236     if $self->option('recur_temporality', 1) eq 'preceding'
237     && ( $last_bill eq '' || $last_bill == 0 );
238
239   my $ratenum = $cust_pkg->part_pkg->option('ratenum');
240
241   my $spool_cdr = $cust_pkg->cust_main->spool_cdr;
242
243   my %included_min = ();
244
245   my $charges = 0;
246
247 #  my $downstream_cdr = '';
248
249   my $rating_method     = $self->option('rating_method') || 'prefix';
250   my $intl              = $self->option('international_prefix') || '011';
251   my $domestic_prefix   = $self->option('domestic_prefix');
252   my $disable_tollfree  = $self->option('disable_tollfree');
253   my $ignore_unrateable = $self->option('ignore_unrateable', 'Hush!');
254   my $use_duration      = $self->option('use_duration');
255
256   my $output_format     = $self->option('output_format', 'Hush!')
257                           || ( $rating_method eq 'upstream_simple'
258                                  ? 'simple'
259                                  : 'default'
260                              );
261
262   my @dirass = ();
263   if ( $self->option('411_rewrite') ) {
264     my $dirass = $self->option('411_rewrite');
265     $dirass =~ s/\s//g;
266     @dirass = split(',', $dirass);
267   }
268
269   #for check_chargable, so we don't keep looking up options inside the loop
270   my %opt_cache = ();
271
272   eval "use Text::CSV_XS;";
273   die $@ if $@;
274   my $csv = new Text::CSV_XS;
275
276   foreach my $cust_svc (
277     grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc
278   ) {
279
280     foreach my $cdr (
281       $cust_svc->get_cdrs_for_update(
282         'disable_src'    => $self->option('disable_src'),
283         'default_prefix' => $self->option('default_prefix'),
284       )  # $last_bill, $$sdate )
285     ) {
286       if ( $DEBUG > 1 ) {
287         warn "rating CDR $cdr\n".
288              join('', map { "  $_ => ". $cdr->{$_}. "\n" } keys %$cdr );
289       }
290
291       my $rate_detail;
292       my( $rate_region, $regionnum );
293       my $pretty_destnum;
294       my $charge = '';
295       my $classnum = '';
296       my @call_details = ();
297       if ( $rating_method eq 'prefix' ) {
298
299         my $da_rewrote = 0;
300         if ( length($cdr->dst) && grep { $cdr->dst eq $_ } @dirass ){
301           $cdr->dst('411');
302           $da_rewrote = 1;
303         }
304
305         my $reason = $self->check_chargable( $cdr,
306                                              'da_rewrote'   => $da_rewrote,
307                                              'option_cache' => \%opt_cache,
308                                            );
309
310         if ( $reason ) {
311
312           warn "not charging for CDR ($reason)\n" if $DEBUG;
313           $charge = 0;
314
315         } else {
316           
317           ###
318           # look up rate details based on called station id
319           # (or calling station id for toll free calls)
320           ###
321
322           my( $to_or_from, $number );
323           if ( $cdr->is_tollfree && ! $disable_tollfree )
324           { #tollfree call
325             $to_or_from = 'from';
326             $number = $cdr->src;
327           } else { #regular call
328             $to_or_from = 'to';
329             $number = $cdr->dst;
330           }
331
332           warn "parsing call $to_or_from $number\n" if $DEBUG;
333
334           #remove non-phone# stuff and whitespace
335           $number =~ s/\s//g;
336 #          my $proto = '';
337 #          $dest =~ s/^(\w+):// and $proto = $1; #sip:
338 #          my $siphost = '';
339 #          $dest =~ s/\@(.*)$// and $siphost = $1; # @10.54.32.1, @sip.example.com
340
341           #determine the country code
342           my $countrycode;
343           if (    $number =~ /^$intl(((\d)(\d))(\d))(\d+)$/
344                || $number =~ /^\+(((\d)(\d))(\d))(\d+)$/
345              )
346           {
347
348             my( $three, $two, $one, $u1, $u2, $rest ) = ( $1,$2,$3,$4,$5,$6 );
349             #first look for 1 digit country code
350             if ( qsearch('rate_prefix', { 'countrycode' => $one } ) ) {
351               $countrycode = $one;
352               $number = $u1.$u2.$rest;
353             } elsif ( qsearch('rate_prefix', { 'countrycode' => $two } ) ) { #or 2
354               $countrycode = $two;
355               $number = $u2.$rest;
356             } else { #3 digit country code
357               $countrycode = $three;
358               $number = $rest;
359             }
360
361           } else {
362             $countrycode = $domestic_prefix || '1';
363             $number =~ s/^$countrycode//;# if length($number) > 10;
364           }
365
366           warn "rating call $to_or_from +$countrycode $number\n" if $DEBUG;
367           $pretty_destnum = "+$countrycode $number";
368
369           my $rate = qsearchs('rate', { 'ratenum' => $ratenum })
370             or die "ratenum $ratenum not found!";
371
372           $rate_detail = $rate->dest_detail({ 'countrycode' => $countrycode,
373                                               'phonenum'    => $number,
374                                             });
375
376           if ( $rate_detail ) {
377
378             $rate_region = $rate_detail->dest_region;
379             $regionnum = $rate_region->regionnum;
380             warn "  found rate for regionnum $regionnum ".
381                  "and rate detail $rate_detail\n"
382               if $DEBUG;
383
384           } elsif ( $ignore_unrateable ) {
385
386             $rate_region = '';
387             $regionnum = '';
388             #code below will throw a warning & skip
389
390           } else {
391
392             die "FATAL: no rate_detail found in ".
393                 $rate->ratenum. ":". $rate->ratename. " rate plan ".
394                 "for +$countrycode $number (CDR acctid ". $cdr->acctid. "); ".
395                 "add a rate or set ignore_unrateable flag on the package def\n";
396           }
397
398         }
399
400 #      } elsif ( $rating_method eq 'upstream' ) { #XXX this was convergent, not currently used.  very much becoming the odd one out. remove?
401 #
402 #        if ( $cdr->cdrtypenum == 1 ) { #rate based on upstream rateid
403 #
404 #          $rate_detail = $cdr->cdr_upstream_rate->rate_detail;
405 #
406 #          $regionnum = $rate_detail->dest_regionnum;
407 #          $rate_region = $rate_detail->dest_region;
408 #
409 #          $pretty_destnum = $cdr->dst;
410 #
411 #          warn "  found rate for regionnum $regionnum and ".
412 #               "rate detail $rate_detail\n"
413 #            if $DEBUG;
414 #
415 #        } else { #pass upstream price through
416 #
417 #          $charge = sprintf('%.2f', $cdr->upstream_price);
418 #          $charges += $charge;
419
420 #          @call_details = (
421 #            #time2str("%Y %b %d - %r", $cdr->calldate_unix ),
422 #            time2str("%c", $cdr->calldate_unix),  #XXX this should probably be a config option dropdown so they can select US vs- rest of world dates or whatnot
423 #            'N/A', #minutes...
424 #            '$'.$charge,
425 #            #$pretty_destnum,
426 #            $cdr->description, #$rate_region->regionname,
427 #          );
428 #
429 #        }
430
431       } elsif ( $rating_method eq 'upstream_simple' ) {
432
433         #XXX $charge = sprintf('%.2f', $cdr->upstream_price);
434         $charge = sprintf('%.3f', $cdr->upstream_price);
435         $charges += $charge;
436
437         @call_details = ($cdr->downstream_csv( 'format' => $output_format,
438                                                'charge' => $charge,
439                                              )
440                         );
441         $classnum = $cdr->calltypenum;
442
443       } else {
444         die "don't know how to rate CDRs using method: $rating_method\n";
445       }
446
447       ###
448       # find the price and add detail to the invoice
449       ###
450
451       # if $rate_detail is not found, skip this CDR... i.e. 
452       # don't add it to invoice, don't set its status to done,
453       # don't call downstream_csv or something on it...
454       # but DO emit a warning...
455       #if ( ! $rate_detail && ! scalar(@call_details) ) {}
456       if ( ! $rate_detail && $charge eq '' ) {
457
458         warn "no rate_detail found for CDR.acctid: ". $cdr->acctid.
459              "; skipping\n"
460
461       } else { # there *is* a rate_detail (or call_details), proceed...
462
463         unless ( @call_details || ( $charge ne '' && $charge == 0 ) ) {
464
465           $included_min{$regionnum} = $rate_detail->min_included
466             unless exists $included_min{$regionnum};
467
468           my $granularity = $rate_detail->sec_granularity;
469
470                       # length($cdr->billsec) ? $cdr->billsec : $cdr->duration;
471           my $seconds = $use_duration ? $cdr->duration : $cdr->billsec;
472
473           $seconds += $granularity - ( $seconds % $granularity )
474             if $seconds      # don't granular-ize 0 billsec calls (bills them)
475             && $granularity; # 0 is per call
476           my $minutes = sprintf("%.1f", $seconds / 60);
477           $minutes =~ s/\.0$// if $granularity == 60;
478
479           # per call rather than per minute
480           $minutes = 1 unless $granularity;
481
482           $included_min{$regionnum} -= $minutes;
483
484           if ( $included_min{$regionnum} < 0 ) {
485             my $charge_min = 0 - $included_min{$regionnum}; #XXX should preserve
486                                                             #(display?) this
487             $included_min{$regionnum} = 0;
488             $charge = sprintf('%.2f', ( $rate_detail->min_charge * $charge_min )
489                                       + 0.00000001 ); #so 1.005 rounds to 1.01
490             $charges += $charge;
491           }
492
493           # this is why we need regionnum/rate_region....
494           warn "  (rate region $rate_region)\n" if $DEBUG;
495
496           @call_details = (
497            $cdr->downstream_csv( 'format'         => $output_format,
498                                  'granularity'    => $granularity,
499                                  'minutes'        => $minutes,
500                                  'charge'         => $charge,
501                                  'pretty_dst'     => $pretty_destnum,
502                                  'dst_regionname' => $rate_region->regionname,
503                                )
504           );
505
506           $classnum = $rate_detail->classnum;
507
508         }
509
510         if ( $charge > 0 ) {
511           #just use FS::cust_bill_pkg_detail objects?
512           my $call_details;
513
514           #if ( $self->option('rating_method') eq 'upstream_simple' ) {
515           if ( scalar(@call_details) == 1 ) {
516             $call_details = [ 'C', $call_details[0], $charge, $classnum ];
517           } else { #only used for $rating_method eq 'upstream' now
518             $csv->combine(@call_details);
519             $call_details = [ 'C', $csv->string, $charge, $classnum ];
520           }
521           warn "  adding details on charge to invoice: [ ".
522               join(', ', @{$call_details} ). " ]"
523             if ( $DEBUG && ref($call_details) );
524           push @$details, $call_details; #\@call_details,
525         }
526
527         # if the customer flag is on, call "downstream_csv" or something
528         # like it to export the call downstream!
529         # XXX price plan option to pick format, or something...
530         #$downstream_cdr .= $cdr->downstream_csv( 'format' => 'XXX format' )
531         #  if $spool_cdr;
532
533         my $error = $cdr->set_status_and_rated_price('done', $charge);
534         die $error if $error;
535
536       }
537
538     } # $cdr
539
540   } # $cust_svc
541
542   unshift @$details, [ 'C', FS::cdr::invoice_header($output_format) ]
543     if @$details && $rating_method ne 'upstream';
544
545 #  if ( $spool_cdr && length($downstream_cdr) ) {
546 #
547 #    use FS::UID qw(datasrc);
548 #    my $dir = '/usr/local/etc/freeside/export.'. datasrc. '/cdr';
549 #    mkdir $dir, 0700 unless -d $dir;
550 #    $dir .= '/'. $cust_pkg->custnum.
551 #    mkdir $dir, 0700 unless -d $dir;
552 #    my $filename = time2str("$dir/CDR%Y%m%d-spool.CSV", time); #XXX invoice date instead?  would require changing the order things are generated in cust_main::bill insert cust_bill first - with transactions it could be done though
553 #
554 #    push @{ $param->{'precommit_hooks'} },
555 #         sub {
556 #               #lock the downstream spool file and append the records 
557 #               use Fcntl qw(:flock);
558 #               use IO::File;
559 #               my $spool = new IO::File ">>$filename"
560 #                 or die "can't open $filename: $!\n";
561 #               flock( $spool, LOCK_EX)
562 #                 or die "can't lock $filename: $!\n";
563 #               seek($spool, 0, 2)
564 #                 or die "can't seek to end of $filename: $!\n";
565 #               print $spool $downstream_cdr;
566 #               flock( $spool, LOCK_UN );
567 #               close $spool;
568 #             };
569 #
570 #  } #if ( $spool_cdr && length($downstream_cdr) )
571
572   if ($param->{'increment_next_bill'}) {
573     my $recur_method = $self->option('recur_method', 1) || 'anniversary';
574                   
575     if ( $recur_method eq 'prorate' ) {
576
577       $charges += $self->SUPER::calc_recur(@_);
578
579     } else {
580
581       $charges += $self->option('recur_fee');
582
583       if ( $recur_method eq 'subscription' ) {
584
585         my $cutoff_day = $self->option('cutoff_day', 1) || 1;
586         my ($day, $mon, $year) = ( localtime($$sdate) )[ 3..5 ];
587
588         if ( $day < $cutoff_day ) {
589           if ( $mon == 0 ) { $mon=11; $year--; }
590           else { $mon--; }
591         }
592
593         $$sdate = timelocal(0, 0, 0, $cutoff_day, $mon, $year);
594
595       }#$recur_method eq 'subscription'
596     }#$recur_method eq 'prorate'
597   }#increment_next_bill
598
599   $charges;
600 }
601
602 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
603 sub check_chargable {
604   my( $self, $cdr, %flags ) = @_;
605
606   #should have some better way of checking these options from a hash
607   #or something
608
609   my @opt = qw(
610     use_amaflags
611     use_disposition
612     use_disposition_taqua
613     use_carrierid
614     use_cdrtypenum
615     skip_dcontext
616     skip_dstchannel_prefix
617     skip_dst_length_less
618     skip_lastapp
619   );
620   foreach my $opt (grep !exists($flags{option_cache}->{$_}), @opt ) {
621     $flags{option_cache}->{$opt} = $self->option($opt, 1);
622   }
623   my %opt = %{ $flags{option_cache} };
624
625   return 'amaflags != 2'
626     if $opt{'use_amaflags'} && $cdr->amaflags != 2;
627
628   return 'disposition != ANSWERED'
629     if $opt{'use_disposition'} && $cdr->disposition ne 'ANSWERED';
630
631   return "disposition != 100"
632     if $opt{'use_disposition_taqua'} && $cdr->disposition != 100;
633
634   return "carrierid != $opt{'use_carrierid'}"
635     if length($opt{'use_carrierid'})
636     && $cdr->carrierid ne $opt{'use_carrierid'} #ne otherwise 0 matches ''
637     && ! $flags{'da_rewrote'};
638
639   return "cdrtypenum != $opt{'use_cdrtypenum'}"
640     if length($opt{'use_cdrtypenum'})
641     && $cdr->cdrtypenum ne $opt{'use_cdrtypenum'}; #ne otherwise 0 matches ''
642
643   return "dcontext IN ( $opt{'skip_dcontext'} )"
644     if $opt{'skip_dcontext'} =~ /\S/
645     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $opt{'skip_dcontext'});
646
647   my $len_prefix = length($opt{'skip_dstchannel_prefix'});
648   return "dstchannel starts with $opt{'skip_dstchannel_prefix'}"
649     if $len_prefix
650     && substr($cdr->dstchannel,0,$len_prefix) eq $opt{'skip_dstchannel_prefix'};
651
652   my $dst_length = $opt{'skip_dst_length_less'};
653   return "destination less than $dst_length digits"
654     if $dst_length && length($cdr->dst) < $dst_length;
655
656   return "lastapp is $opt{'skip_lastapp'}"
657     if length($opt{'skip_lastapp'}) && $cdr->lastapp eq $opt{'skip_lastapp'};
658
659   #all right then, rate it
660   '';
661 }
662
663 sub is_free {
664   0;
665 }
666
667 sub base_recur {
668   my($self, $cust_pkg) = @_;
669   $self->option('recur_fee');
670 }
671
672 #  This equates svc_phone records; perhaps svc_phone should have a field
673 #  to indicate it represents a line
674 sub calc_units {    
675   my($self, $cust_pkg ) = @_;
676   my $count = 0;
677   if ( $self->option('count_available_phones', 1)) {
678     map { $count += ( $_->quantity || 0 ) }
679       grep { $_->part_svc->svcdb eq 'svc_phone' }
680       $cust_pkg->part_pkg->pkg_svc;
681   } else {
682     $count = 
683       scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
684   }
685   $count;
686 }
687
688 1;
689