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