35b0cac151f2c5b5f8d911d1020691262d2646ac
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
1 package FS::part_pkg::voip_cdr;
2
3 use strict;
4 use base qw( FS::part_pkg::recur_Common );
5 use vars qw( $DEBUG %info );
6 use Date::Format;
7 use Tie::IxHash;
8 use FS::Conf;
9 use FS::Record qw(qsearchs qsearch);
10 use FS::cdr;
11 use FS::rate;
12 use FS::rate_prefix;
13 use FS::rate_detail;
14
15 use List::Util qw(first min);
16
17
18 $DEBUG = 0;
19
20 tie my %cdr_svc_method, 'Tie::IxHash',
21   'svc_phone.phonenum' => 'Phone numbers (svc_phone.phonenum)',
22   'svc_pbx.title'      => 'PBX name (svc_pbx.title)',
23   'svc_pbx.svcnum'     => 'Freeside service # (svc_pbx.svcnum)',
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 %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 tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities();
45
46 # previously "1" was "ignore 
47 tie my %unrateable_opts, 'Tie::IxHash',
48   ''  => 'Exit with a fatal error',
49   1   => 'Flag for later review',
50   2   => 'Ignore and continue',
51 ;
52
53 %info = (
54   'name' => 'VoIP rating by plan of CDR records in an internal (or external) SQL table',
55   'shortname' => 'VoIP/telco CDR rating (standard)',
56   'inherit_fields' => [ 'prorate_Mixin', 'global_Mixin' ],
57   'fields' => {
58     'suspend_bill' => { 'name' => 'Continue recurring billing while suspended',
59                         'type' => 'checkbox',
60                       },
61     #false laziness w/flat.pm
62     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
63                              'type' => 'select',
64                              'select_options' => \%temporalities,
65                            },
66
67     'cutoff_day'    => { 'name' => 'Billing Day (1 - 28) for prorating or '.
68                                    'subscription',
69                          'default' => '1',
70                        },
71     'recur_method'  => { 'name' => 'Recurring fee method',
72                          #'type' => 'radio',
73                          #'options' => \%recur_method,
74                          'type' => 'select',
75                          'select_options' => \%FS::part_pkg::recur_Common::recur_method,
76                        },
77
78     'cdr_svc_method' => { 'name' => 'CDR service matching method',
79                           'type' => 'radio',
80                           'options' => \%cdr_svc_method,
81                         },
82
83     'rating_method' => { 'name' => 'Rating method',
84                          'type' => 'radio',
85                          'options' => \%rating_method,
86                        },
87
88     'ratenum'   => { 'name' => 'Rate plan',
89                      'type' => 'select',
90                      'select_table' => 'rate',
91                      'select_key'   => 'ratenum',
92                      'select_label' => 'ratename',
93                    },
94                    
95     'intrastate_ratenum'   => { 'name' => 'Optional alternate intrastate rate plan',
96                      'type' => 'select',
97                      'select_table' => 'rate',
98                      'select_key'   => 'ratenum',
99                      'select_label' => 'ratename',
100                      'disable_empty' => 0,
101                      'empty_label'   => '',
102                    },
103
104     'min_included' => { 'name' => 'Minutes included when using the "single price per minute" rating method or when using the "prefix" rating method ("region group" billing)',
105                     },
106
107     'min_charge' => { 'name' => 'Charge per minute when using "single price per minute" rating method',
108                     },
109
110     'sec_granularity' => { 'name' => 'Granularity when using "single price per minute" rating method',
111                            'type' => 'select',
112                            'select_options' => \%granularity,
113                          },
114
115     'ignore_unrateable' => { 'name' => 'Handling of calls without a rate in the rate table',
116                              'type' => 'select',
117                              'select_options' => \%unrateable_opts,
118                            },
119
120     'default_prefix' => { 'name'    => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
121                           'default' => '+1',
122                         },
123
124     'disable_src' => { 'name' => 'Disable rating of CDR records based on the "src" field in addition to "charged_party"',
125                        'type' => 'checkbox'
126                      },
127
128     'domestic_prefix' => { 'name'    => 'Destination prefix for domestic CDR records',
129                            'default' => '1',
130                          },
131
132 #    'domestic_prefix_required' => { 'name' => 'Require explicit destination prefix for domestic CDR records',
133 #                                    'type' => 'checkbox',
134 #                                  },
135
136     'international_prefix' => { 'name'    => 'Destination prefix for international CDR records',
137                                 'default' => '011',
138                               },
139
140     'disable_tollfree' => { 'name' => 'Disable automatic toll-free processing',
141                             'type' => 'checkbox',
142                           },
143
144     'use_amaflags' => { 'name' => 'Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").',
145                         'type' => 'checkbox',
146                       },
147
148     'use_carrierid' => { 'name' => 'Only charge for CDRs where the Carrier ID is set to: ',
149                          },
150
151     'use_cdrtypenum' => { 'name' => 'Only charge for CDRs where the CDR Type is set to: ',
152                          },
153     
154     'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to: ',
155                          },
156     
157     'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
158                          },
159     
160     'disposition_in' => { 'name' => 'Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
161                          },
162
163     'skip_dst_prefix' => { 'name' => 'Do not charge for CDRs where the destination number starts with any of these values: ',
164     },
165
166     'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: ',
167                        },
168
169     'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
170                                 },
171
172     'skip_src_length_more' => { 'name' => 'Do not charge for CDRs where the source is more than this many digits:',
173                               },
174
175     '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',
176                                                   'type' => 'checkbox',
177                                                 },
178
179     'accountcode_tollfree_ratenum' => {
180       'name' => 'Optional alternate rate plan when accountcode is toll free: ',
181       'type' => 'select',
182       'select_table'  => 'rate',
183       'select_key'    => 'ratenum',
184       'select_label'  => 'ratename',
185       'disable_empty' => 0,
186       'empty_label'   => '',
187     },
188
189     'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
190                               },
191
192     'noskip_dst_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free',
193                                                   'type' => 'checkbox',
194                                                 },
195
196     'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value: ',
197                       },
198
199     'skip_max_callers' => { 'name' => 'Do not charge for CDRs where max_callers is less than or equal to this value: ',
200                           },
201
202     'use_duration'   => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
203                           'type' => 'checkbox',
204                         },
205
206     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): ',
207                       },
208
209     #false laziness w/cdr_termination.pm
210     'output_format' => { 'name' => 'CDR invoice display format',
211                          'type' => 'select',
212                          'select_options' => { FS::cdr::invoice_formats() },
213                          'default'        => 'default', #XXX test
214                        },
215
216     'usage_section' => { 'name' => 'Section in which to place usage charges (whether separated or not): ',
217                        },
218
219     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
220                           'type' => 'checkbox',
221                         },
222
223     'usage_mandate' => { 'name' => 'Always put usage details in separate section',
224                           'type' => 'checkbox',
225                        },
226     #eofalse
227
228     'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call (as well any setup fee, upon first payment).  Useful for prepaid.',
229                            'type' => 'checkbox',
230                          },
231
232     'bill_inactive_svcs' => { 'name' => 'Bill for all phone numbers that were active during the billing period',
233                               'type' => 'checkbox',
234                             },
235
236     '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.',
237                            'type' => 'checkbox',
238                          },
239
240     #XXX also have option for an external db
241 #    'cdr_location' => { 'name' => 'CDR database location'
242 #                        'type' => 'select',
243 #                        'select_options' => \%cdr_location,
244 #                        'select_callback' => {
245 #                          'external' => {
246 #                            'enable' => [ 'datasrc', 'username', 'password' ],
247 #                          },
248 #                          'internal' => {
249 #                            'disable' => [ 'datasrc', 'username', 'password' ],
250 #                          }
251 #                        },
252 #                      },
253 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
254 #                   'disabled' => 'Y',
255 #                 },
256 #    'username' => { 'name' => 'External database username',
257 #                    'disabled' => 'Y',
258 #                  },
259 #    'password' => { 'name' => 'External database password',
260 #                    'disabled' => 'Y',
261 #                  },
262
263   },
264   'fieldorder' => [qw(
265                        recur_temporality
266                        recur_method cutoff_day ),
267                        FS::part_pkg::prorate_Mixin::fieldorder,
268                     qw(
269                        cdr_svc_method
270                        rating_method ratenum intrastate_ratenum 
271                        min_charge min_included
272                                sec_granularity
273                        ignore_unrateable
274                        default_prefix
275                        disable_src
276                        domestic_prefix international_prefix
277                        disable_tollfree
278                        use_amaflags
279                        use_carrierid 
280                        use_cdrtypenum ignore_cdrtypenum
281                        ignore_disposition disposition_in
282                        skip_dcontext skip_dst_prefix 
283                        skip_dstchannel_prefix skip_src_length_more 
284                        noskip_src_length_accountcode_tollfree
285                        accountcode_tollfree_ratenum
286                        skip_dst_length_less
287                        noskip_dst_length_accountcode_tollfree
288                        skip_lastapp
289                        skip_max_callers
290                        use_duration
291                        411_rewrite
292                        output_format usage_mandate summarize_usage usage_section
293                        bill_every_call bill_inactive_svcs
294                        count_available_phones suspend_bill 
295                      )
296                   ],
297   'weight' => 40,
298 );
299
300 sub price_info {
301     my $self = shift;
302     my $str = $self->SUPER::price_info;
303     $str .= " plus usage" if $str;
304     $str;
305 }
306
307 sub calc_recur {
308   my $self = shift;
309   my($cust_pkg, $sdate, $details, $param ) = @_;
310
311   my $charges = 0;
312
313   $charges += $self->calc_usage(@_);
314   $charges += $self->calc_recur_Common(@_);
315
316   $charges;
317
318 }
319
320 sub calc_cancel {
321   my $self = shift;
322   my($cust_pkg, $sdate, $details, $param ) = @_;
323
324   $self->calc_usage(@_);
325 }
326
327 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
328
329 sub calc_usage {
330   my $self = shift;
331   my($cust_pkg, $sdate, $details, $param ) = @_;
332
333   #my $last_bill = $cust_pkg->last_bill;
334   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
335
336   return 0
337     if $self->recur_temporality eq 'preceding'
338     && ( $last_bill eq '' || $last_bill == 0 );
339
340   my $ratenum = $cust_pkg->part_pkg->option('ratenum');
341
342   my $spool_cdr = $cust_pkg->cust_main->spool_cdr;
343
344   my %included_min = ();
345
346   my $charges = 0;
347
348 #  my $downstream_cdr = '';
349
350   my $cdr_svc_method    = $self->option('cdr_svc_method',1)||'svc_phone.phonenum';
351   my $rating_method     = $self->option('rating_method') || 'prefix';
352   my $intl              = $self->option('international_prefix') || '011';
353   my $domestic_prefix   = $self->option('domestic_prefix');
354   my $disable_tollfree  = $self->option('disable_tollfree');
355   my $ignore_unrateable = $self->option('ignore_unrateable', 'Hush!');
356   my $use_duration      = $self->option('use_duration');
357   my $region_group      = ($rating_method eq 'prefix' && ($self->option('min_included',1) || 0) > 0);
358   my $region_group_included_min = $region_group ? $self->option('min_included') : 0;
359
360   my $output_format     = $self->option('output_format', 'Hush!')
361                           || ( $rating_method eq 'upstream_simple'
362                                  ? 'simple'
363                                  : 'default'
364                              );
365
366   my @dirass = ();
367   if ( $self->option('411_rewrite') ) {
368     my $dirass = $self->option('411_rewrite');
369     $dirass =~ s/\s//g;
370     @dirass = split(',', $dirass);
371   }
372
373   my %interval_cache = (); # for timed rates
374
375   #for check_chargable, so we don't keep looking up options inside the loop
376   my %opt_cache = ();
377
378   eval "use Text::CSV_XS;";
379   die $@ if $@;
380   my $csv = new Text::CSV_XS;
381
382   my($svc_table, $svc_field) = split('\.', $cdr_svc_method);
383
384   my @cust_svc;
385   if( $self->option('bill_inactive_svcs',1) ) {
386     #XXX in this mode do we need to restrict the set of CDRs by date also?
387     @cust_svc = $cust_pkg->h_cust_svc($$sdate, $last_bill);
388   }
389   else {
390     @cust_svc = $cust_pkg->cust_svc;
391   }
392   @cust_svc = grep { $_->part_svc->svcdb eq $svc_table } @cust_svc;
393
394   foreach my $cust_svc (@cust_svc) {
395
396     my $svc_x;
397     if( $self->option('bill_inactive_svcs',1) ) {
398       $svc_x = $cust_svc->h_svc_x($$sdate, $last_bill);
399     }
400     else {
401       $svc_x = $cust_svc->svc_x;
402     }
403     my %options = (
404         'disable_src'    => $self->option('disable_src'),
405         'default_prefix' => $self->option('default_prefix'),
406         'status'         => '',
407         'for_update'     => 1,
408       );  # $last_bill, $$sdate )
409     $options{'by_svcnum'} = 1 if $svc_field eq 'svcnum';
410
411     my @invoice_details_sort;
412
413     foreach my $cdr (
414       $svc_x->get_cdrs( %options )
415     ) {
416       if ( $DEBUG > 1 ) {
417         warn "rating CDR $cdr\n".
418              join('', map { "  $_ => ". $cdr->{$_}. "\n" } keys %$cdr );
419       }
420
421       my $rate_detail;
422       my( $rate_region, $regionnum );
423       my $rate;
424       my $pretty_destnum;
425       my $charge = '';
426       my $seconds = '';
427       my $weektime = '';
428       my $regionname = '';
429       my $classnum = '';
430       my $countrycode;
431       my $number;
432
433       my @call_details = ();
434       if ( $rating_method eq 'prefix' ) {
435
436         my $da_rewrote = 0;
437         if ( length($cdr->dst) && grep { $cdr->dst eq $_ } @dirass ){
438           $cdr->dst('411');
439           $da_rewrote = 1;
440         }
441
442         my $reason = $self->check_chargable( $cdr,
443                                              'da_rewrote'   => $da_rewrote,
444                                              'option_cache' => \%opt_cache,
445                                            );
446
447         if ( $reason ) {
448
449           warn "not charging for CDR ($reason)\n" if $DEBUG;
450           $charge = 0;
451
452         } else {
453           
454           ###
455           # look up rate details based on called station id
456           # (or calling station id for toll free calls)
457           ###
458
459           my( $to_or_from );
460           if ( $cdr->is_tollfree && ! $disable_tollfree )
461           { #tollfree call
462             $to_or_from = 'from';
463             $number = $cdr->src;
464           } else { #regular call
465             $to_or_from = 'to';
466             $number = $cdr->dst;
467           }
468
469           warn "parsing call $to_or_from $number\n" if $DEBUG;
470
471           #remove non-phone# stuff and whitespace
472           $number =~ s/\s//g;
473 #          my $proto = '';
474 #          $dest =~ s/^(\w+):// and $proto = $1; #sip:
475 #          my $siphost = '';
476 #          $dest =~ s/\@(.*)$// and $siphost = $1; # @10.54.32.1, @sip.example.com
477
478           #determine the country code
479           $countrycode = '';
480           if (    $number =~ /^$intl(((\d)(\d))(\d))(\d+)$/
481                || $number =~ /^\+(((\d)(\d))(\d))(\d+)$/
482              )
483           {
484
485             my( $three, $two, $one, $u1, $u2, $rest ) = ( $1,$2,$3,$4,$5,$6 );
486             #first look for 1 digit country code
487             if ( qsearch('rate_prefix', { 'countrycode' => $one } ) ) {
488               $countrycode = $one;
489               $number = $u1.$u2.$rest;
490             } elsif ( qsearch('rate_prefix', { 'countrycode' => $two } ) ) { #or 2
491               $countrycode = $two;
492               $number = $u2.$rest;
493             } else { #3 digit country code
494               $countrycode = $three;
495               $number = $rest;
496             }
497
498           } else {
499             $countrycode = length($domestic_prefix) ? $domestic_prefix : '1';
500             $number =~ s/^$countrycode//;# if length($number) > 10;
501           }
502
503           warn "rating call $to_or_from +$countrycode $number\n" if $DEBUG;
504           $pretty_destnum = "+$countrycode $number";
505           #asterisks here causes inserting the detail to barf, so:
506           $pretty_destnum =~ s/\*//g;
507
508           my $eff_ratenum = $cdr->is_tollfree('accountcode')
509             ? $cust_pkg->part_pkg->option('accountcode_tollfree_ratenum')
510             : '';
511
512           my $intrastate_ratenum = $cust_pkg->part_pkg->option('accountcode_tollfree_ratenum');
513           if ( $intrastate_ratenum && !$cdr->is_tollfree ) {
514             # this is relatively easy only because:
515             # -assume all numbers are valid NANP numbers NOT in a fully-qualified format
516             # -disregard toll-free
517             # -disregard private or unknown numbers
518             # -there is exactly one record in rate_prefix for a given NPANXX
519             # -default to interstate if we can't find one or both of the prefixes
520             my $dstprefix = $cdr->dst;
521             $dstprefix =~ /^(\d{6})/;
522             $dstprefix = qsearchs('rate_prefix', {   'countrycode' => '1', 
523                                                         'npa' => $1, 
524                                                  }) || '';
525             my $srcprefix = $cdr->src;
526             $srcprefix =~ /^(\d{6})/;
527             $srcprefix = qsearchs('rate_prefix', {   'countrycode' => '1',
528                                                      'npa' => $1, 
529                                                  }) || '';
530             $eff_ratenum = $intrastate_ratenum if ($srcprefix && $dstprefix
531                 && $srcprefix->state && $dstprefix->state
532                 && $srcprefix->state eq $dstprefix->state);
533           }
534
535           $eff_ratenum ||= $ratenum;
536           $rate = qsearchs('rate', { 'ratenum' => $eff_ratenum })
537             or die "ratenum $eff_ratenum not found!";
538
539           my @ltime = localtime($cdr->startdate);
540           $weektime = $ltime[0] + 
541                       $ltime[1]*60 +   #minutes
542                       $ltime[2]*3600 + #hours
543                       $ltime[6]*86400; #days since sunday
544           # if there's no timed rate_detail for this time/region combination,
545           # dest_detail returns the default.  There may still be a timed rate 
546           # that applies after the starttime of the call, so be careful...
547           $rate_detail = $rate->dest_detail({ 'countrycode' => $countrycode,
548                                               'phonenum'    => $number,
549                                               'weektime'    => $weektime,
550                                               'cdrtypenum'  => $cdr->cdrtypenum,
551                                             });
552
553           if ( $rate_detail ) {
554
555             $rate_region = $rate_detail->dest_region;
556             $regionnum = $rate_region->regionnum;
557             $regionname = $rate_region->regionname;
558             warn "  found rate for regionnum $regionnum ".
559                  "and rate detail $rate_detail\n"
560               if $DEBUG;
561
562             if ( !exists($interval_cache{$regionnum}) ) {
563               my @intervals = (
564                 sort { $a->stime <=> $b->stime }
565                 map { my $r = $_->rate_time; $r ? $r->intervals : () }
566                 $rate->rate_detail
567               );
568               $interval_cache{$regionnum} = \@intervals;
569               warn "  cached ".scalar(@intervals)." interval(s)\n"
570                 if $DEBUG;
571             }
572
573           } elsif ( $ignore_unrateable ) {
574
575             $rate_region = '';
576             $regionnum = '';
577             #code below will throw a warning & skip
578
579           } else {
580
581             die "FATAL: no rate_detail found in ".
582                 $rate->ratenum. ":". $rate->ratename. " rate plan ".
583                 "for +$countrycode $number (CDR acctid ". $cdr->acctid. "); ".
584                 "add a rate or set ignore_unrateable flag on the package def\n";
585           }
586
587         }
588
589       } elsif ( $rating_method eq 'upstream_simple' ) {
590
591         #XXX $charge = sprintf('%.2f', $cdr->upstream_price);
592         $charge = sprintf('%.3f', $cdr->upstream_price);
593         $charges += $charge;
594         warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
595
596         @call_details = ($cdr->downstream_csv( 'format' => $output_format,
597                                                'charge' => $charge,
598                                              )
599                         );
600         $classnum = $cdr->calltypenum;
601
602       } elsif ( $rating_method eq 'single_price' ) {
603
604         # a little false laziness w/below
605         # $rate_detail = new FS::rate_detail({sec_granularity => ... }) ?
606
607         my $granularity = length($self->option('sec_granularity'))
608                             ? $self->option('sec_granularity')
609                             : 60;
610
611         $seconds = $use_duration ? $cdr->duration : $cdr->billsec;
612
613         $seconds += $granularity - ( $seconds % $granularity )
614           if $seconds      # don't granular-ize 0 billsec calls (bills them)
615           && $granularity  # 0 is per call
616           && $seconds % $granularity;
617         my $minutes = $granularity ? ($seconds / 60) : 1;
618         $charge = sprintf('%.4f', ( $self->option('min_charge') * $minutes )
619                                   + 0.0000000001 ); #so 1.00005 rounds to 1.0001
620
621         warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
622         $charges += $charge;
623
624         @call_details = ($cdr->downstream_csv( 'format'  => $output_format,
625                                                'charge'  => $charge,
626                                                'seconds' => ($use_duration ? 
627                                                              $cdr->duration : 
628                                                              $cdr->billsec),
629                                                'granularity' => $granularity,
630                                              )
631                         );
632
633       } else {
634         die "don't know how to rate CDRs using method: $rating_method\n";
635       }
636
637       ###
638       # find the price and add detail to the invoice
639       ###
640
641       # if $rate_detail is not found, skip this CDR... i.e. 
642       # don't add it to invoice, don't set its status to done,
643       # don't call downstream_csv or something on it...
644       # but DO emit a warning...
645       #if ( ! $rate_detail && ! scalar(@call_details) ) {}
646       if ( ! $rate_detail && $charge eq '' ) {
647
648         if ( $ignore_unrateable == 2 ) {
649           # throw a warning--not recommended
650           warn "no rate_detail found for CDR.acctid: ". $cdr->acctid.
651                "; skipping\n"
652         }
653         else {
654           # mark the CDR as unrateable
655           my $error = $cdr->set_status_and_rated_price(
656             'failed',
657             '',
658             $cust_svc->svcnum
659           );
660           die $error if $error;
661         }#if $ignore_unrateable
662
663       } else { # there *is* a rate_detail (or call_details), proceed...
664         # About this section:
665         # We don't round _anything_ (except granularizing) 
666         # until the final $charge = sprintf("%.2f"...).
667
668         unless ( @call_details || ( $charge ne '' && $charge == 0 ) ) {
669
670           my $seconds_left = $use_duration ? $cdr->duration : $cdr->billsec;
671           # charge for the first (conn_sec) seconds
672           $seconds = min($seconds_left, $rate_detail->conn_sec);
673           $seconds_left -= $seconds; 
674           $weektime     += $seconds;
675           $charge = $rate_detail->conn_charge; 
676
677           my $etime;
678           while($seconds_left) {
679             my $ratetimenum = $rate_detail->ratetimenum; # may be empty
680
681             # find the end of the current rate interval
682             if(@{ $interval_cache{$regionnum} } == 0) {
683               # There are no timed rates in this group, so just stay 
684               # in the default rate_detail for the entire duration.
685               # Set an "end" of 1 past the end of the current call.
686               $etime = $weektime + $seconds_left + 1;
687             } 
688             elsif($ratetimenum) {
689               # This is a timed rate, so go to the etime of this interval.
690               # If it's followed by another timed rate, the stime of that 
691               # interval should match the etime of this one.
692               my $interval = $rate_detail->rate_time->contains($weektime);
693               $etime = $interval->etime;
694             }
695             else {
696               # This is a default rate, so use the stime of the next 
697               # interval in the sequence.
698               my $next_int = first { $_->stime > $weektime } 
699                               @{ $interval_cache{$regionnum} };
700               if ($next_int) {
701                 $etime = $next_int->stime;
702               }
703               else {
704                 # weektime is near the end of the week, so decrement 
705                 # it by a full week and use the stime of the first 
706                 # interval.
707                 $weektime -= (3600*24*7);
708                 $etime = $interval_cache{$regionnum}->[0]->stime;
709               }
710             }
711
712             my $charge_sec = min($seconds_left, $etime - $weektime);
713
714             $seconds_left -= $charge_sec;
715
716             $included_min{$regionnum}{$ratetimenum} = $rate_detail->min_included
717               unless exists $included_min{$regionnum}{$ratetimenum};
718
719             my $granularity = $rate_detail->sec_granularity;
720
721             my $minutes;
722             if ( $granularity ) { # charge per minute
723               # Round up to the nearest $granularity
724               if ( $charge_sec and $charge_sec % $granularity ) {
725                 $charge_sec += $granularity - ($charge_sec % $granularity);
726               }
727               $minutes = $charge_sec / 60; #don't round this
728             }
729             else { # per call
730               $minutes = 1;
731               $seconds_left = 0;
732             }
733
734             $seconds += $charge_sec;
735
736             $region_group_included_min -= $minutes 
737                 if $region_group && $rate_detail->region_group;
738
739             $included_min{$regionnum}{$ratetimenum} -= $minutes;
740             if ( ($region_group_included_min <= 0 || !$rate_detail->region_group)
741                           && $included_min{$regionnum}{$ratetimenum} <= 0 ) {
742               my $charge_min = 0 - $included_min{$regionnum}{$ratetimenum}; #XXX should preserve
743                                                               #(display?) this
744               $included_min{$regionnum}{$ratetimenum} = 0;
745               $charge += ($rate_detail->min_charge * $charge_min); #still not rounded
746             }
747             elsif( $region_group_included_min > 0 && $region_group
748                 && $rate_detail->region_group ) {
749                 $included_min{$regionnum}{$ratetimenum} = 0 
750             }
751
752             # choose next rate_detail
753             $rate_detail = $rate->dest_detail({ 'countrycode' => $countrycode,
754                                                 'phonenum'    => $number,
755                                                 'weektime'    => $etime,
756                                                 'cdrtypenum'  => $cdr->cdrtypenum })
757                     if($seconds_left);
758             # we have now moved forward to $etime
759             $weektime = $etime;
760
761           } #while $seconds_left
762           # this is why we need regionnum/rate_region....
763           warn "  (rate region $rate_region)\n" if $DEBUG;
764
765           $classnum = $rate_detail->classnum;
766           $charge = sprintf('%.2f', $charge + 0.000001); # NOW round it.
767           warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
768           $charges += $charge;
769
770           @call_details = (
771             $cdr->downstream_csv( 'format'         => $output_format,
772                                   'granularity'    => $rate_detail->sec_granularity, 
773                                   'seconds'        => ($use_duration ?
774                                                        $cdr->duration :
775                                                        $cdr->billsec),
776                                   'charge'         => $charge,
777                                   'pretty_dst'     => $pretty_destnum,
778                                   'dst_regionname' => $regionname,
779                                 )
780           );
781         } #if(there is a rate_detail)
782  
783
784         if ( $charge > 0 ) {
785           #just use FS::cust_bill_pkg_detail objects?
786           my $call_details;
787           my $phonenum = $svc_x->phonenum;
788
789           if ( scalar(@call_details) == 1 ) {
790             $call_details =
791               [ 'C',
792                 $call_details[0],
793                 $charge,
794                 $classnum,
795                 $phonenum,
796                 $cdr->accountcode,
797                 $cdr->startdate,
798                 $seconds,
799                 $regionname,
800               ];
801           } else { #only used for $rating_method eq 'upstream' now
802             $csv->combine(@call_details);
803             $call_details =
804               [ 'C',
805                 $csv->string,
806                 $charge,
807                 $classnum,
808                 $phonenum,
809                 $cdr->accountcode,
810                 $cdr->startdate,
811                 $seconds,
812                 $regionname,
813               ];
814           }
815           warn "  adding details on charge to invoice: [ ".
816               join(', ', @{$call_details} ). " ]"
817             if ( $DEBUG && ref($call_details) );
818           push @invoice_details_sort, [ $call_details, $cdr->calldate_unix ];
819         }
820
821         # if the customer flag is on, call "downstream_csv" or something
822         # like it to export the call downstream!
823         # XXX price plan option to pick format, or something...
824         #$downstream_cdr .= $cdr->downstream_csv( 'format' => 'XXX format' )
825         #  if $spool_cdr;
826
827         my $error = $cdr->set_status_and_rated_price( 'done',
828                                                       $charge,
829                                                       $cust_svc->svcnum,
830                                                     );
831         die $error if $error;
832
833       }
834
835     } # $cdr
836  
837     my @sorted_invoice_details = sort { @{$a}[1] <=> @{$b}[1] } @invoice_details_sort;
838     foreach my $sorted_call_detail ( @sorted_invoice_details ) {
839         push @$details, @{$sorted_call_detail}[0];
840     }
841
842   } # $cust_svc
843
844   unshift @$details, [ 'C',
845                        FS::cdr::invoice_header($output_format),
846                        '',
847                        '',
848                        '',
849                        '',
850                        '',
851                      ]
852     if @$details && $rating_method ne 'upstream';
853
854 #  if ( $spool_cdr && length($downstream_cdr) ) {
855 #
856 #    use FS::UID qw(datasrc);
857 #    my $dir = '/usr/local/etc/freeside/export.'. datasrc. '/cdr';
858 #    mkdir $dir, 0700 unless -d $dir;
859 #    $dir .= '/'. $cust_pkg->custnum.
860 #    mkdir $dir, 0700 unless -d $dir;
861 #    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
862 #
863 #    push @{ $param->{'precommit_hooks'} },
864 #         sub {
865 #               #lock the downstream spool file and append the records 
866 #               use Fcntl qw(:flock);
867 #               use IO::File;
868 #               my $spool = new IO::File ">>$filename"
869 #                 or die "can't open $filename: $!\n";
870 #               flock( $spool, LOCK_EX)
871 #                 or die "can't lock $filename: $!\n";
872 #               seek($spool, 0, 2)
873 #                 or die "can't seek to end of $filename: $!\n";
874 #               print $spool $downstream_cdr;
875 #               flock( $spool, LOCK_UN );
876 #               close $spool;
877 #             };
878 #
879 #  } #if ( $spool_cdr && length($downstream_cdr) )
880
881   $charges;
882 }
883
884 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
885 sub check_chargable {
886   my( $self, $cdr, %flags ) = @_;
887
888   #should have some better way of checking these options from a hash
889   #or something
890
891   my @opt = qw(
892     use_amaflags
893     use_carrierid
894     use_cdrtypenum
895     ignore_cdrtypenum
896     disposition_in
897     ignore_disposition
898     skip_dst_prefix
899     skip_dcontext
900     skip_dstchannel_prefix
901     skip_src_length_more noskip_src_length_accountcode_tollfree
902     skip_dst_length_less noskip_dst_length_accountcode_tollfree
903     skip_lastapp
904     skip_max_callers
905   );
906   foreach my $opt (grep !exists($flags{option_cache}->{$_}), @opt ) {
907     $flags{option_cache}->{$opt} = $self->option($opt, 1);
908   }
909   my %opt = %{ $flags{option_cache} };
910
911   return 'amaflags != 2'
912     if $opt{'use_amaflags'} && $cdr->amaflags != 2;
913
914   return "disposition NOT IN ( $opt{'disposition_in'} )"
915     if $opt{'disposition_in'} =~ /\S/
916     && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'disposition_in'});
917   
918   return "disposition IN ( $opt{'ignore_disposition'} )"
919     if $opt{'ignore_disposition'} =~ /\S/
920     && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'ignore_disposition'});
921
922   foreach(split(/\s*,\s*/, $opt{'skip_dst_prefix'})) {
923     return "dst starts with '$_'"
924     if length($_) && substr($cdr->dst,0,length($_)) eq $_;
925   }
926
927   return "carrierid != $opt{'use_carrierid'}"
928     if length($opt{'use_carrierid'})
929     && $cdr->carrierid ne $opt{'use_carrierid'} #ne otherwise 0 matches ''
930     && ! $flags{'da_rewrote'};
931
932   return "cdrtypenum != $opt{'use_cdrtypenum'}"
933     if length($opt{'use_cdrtypenum'})
934     && $cdr->cdrtypenum ne $opt{'use_cdrtypenum'}; #ne otherwise 0 matches ''
935   
936   return "cdrtypenum == $opt{'ignore_cdrtypenum'}"
937     if length($opt{'ignore_cdrtypenum'})
938     && $cdr->cdrtypenum eq $opt{'ignore_cdrtypenum'}; #eq otherwise 0 matches ''
939
940   return "dcontext IN ( $opt{'skip_dcontext'} )"
941     if $opt{'skip_dcontext'} =~ /\S/
942     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $opt{'skip_dcontext'});
943
944   my $len_prefix = length($opt{'skip_dstchannel_prefix'});
945   return "dstchannel starts with $opt{'skip_dstchannel_prefix'}"
946     if $len_prefix
947     && substr($cdr->dstchannel,0,$len_prefix) eq $opt{'skip_dstchannel_prefix'};
948
949   my $dst_length = $opt{'skip_dst_length_less'};
950   return "destination less than $dst_length digits"
951     if $dst_length && length($cdr->dst) < $dst_length
952     && ! ( $opt{'noskip_dst_length_accountcode_tollfree'}
953             && $cdr->is_tollfree('accountcode')
954          );
955
956   return "lastapp is $opt{'skip_lastapp'}"
957     if length($opt{'skip_lastapp'}) && $cdr->lastapp eq $opt{'skip_lastapp'};
958
959   my $src_length = $opt{'skip_src_length_more'};
960   if ( $src_length ) {
961
962     if ( $opt{'noskip_src_length_accountcode_tollfree'} ) {
963
964       if ( $cdr->is_tollfree('accountcode') ) {
965         return "source less than or equal to $src_length digits"
966           if length($cdr->src) <= $src_length;
967       } else {
968         return "source more than $src_length digits"
969           if length($cdr->src) > $src_length;
970       }
971
972     } else {
973       return "source more than $src_length digits"
974         if length($cdr->src) > $src_length;
975     }
976
977   }
978
979   return "max_callers <= $opt{skip_max_callers}"
980     if length($opt{'skip_max_callers'})
981       and length($cdr->max_callers)
982       and $cdr->max_callers <= $opt{'skip_max_callers'};
983
984   #all right then, rate it
985   '';
986 }
987
988 sub is_free {
989   0;
990 }
991
992 #  This equates svc_phone records; perhaps svc_phone should have a field
993 #  to indicate it represents a line
994 sub calc_units {    
995   my($self, $cust_pkg ) = @_;
996   my $count = 0;
997   if ( $self->option('count_available_phones', 1)) {
998     map { $count += ( $_->quantity || 0 ) }
999       grep { $_->part_svc->svcdb eq 'svc_phone' }
1000       $cust_pkg->part_pkg->pkg_svc;
1001   } else {
1002     $count = 
1003       scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
1004   }
1005   $count;
1006 }
1007
1008 1;
1009