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