78653353408ddedcc6595ced23721abcb683fbe6
[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  => 'Ignore and continue',
50   2  => 'Flag for later review',
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         'cdrtypenum'     => $self->option('use_cdrtypenum'),
407         'status'         => '',
408         'for_update'     => 1,
409       );  # $last_bill, $$sdate )
410     $options{'by_svcnum'} = 1 if $svc_field eq 'svcnum';
411
412     my @invoice_details_sort;
413
414     foreach my $cdr (
415       $svc_x->get_cdrs( %options )
416     ) {
417       if ( $DEBUG > 1 ) {
418         warn "rating CDR $cdr\n".
419              join('', map { "  $_ => ". $cdr->{$_}. "\n" } keys %$cdr );
420       }
421
422       my $rate_detail;
423       my( $rate_region, $regionnum );
424       my $rate;
425       my $pretty_destnum;
426       my $charge = '';
427       my $seconds = '';
428       my $weektime = '';
429       my $regionname = '';
430       my $ratename = '';
431       my $classnum = '';
432       my $countrycode;
433       my $number;
434
435       my @call_details = ();
436       if ( $rating_method eq 'prefix' ) {
437
438         my $da_rewrote = 0;
439         # this will result in those CDRs being marked as done... is that 
440         # what we want?
441         if ( length($cdr->dst) && grep { $cdr->dst eq $_ } @dirass ){
442           $cdr->dst('411');
443           $da_rewrote = 1;
444         }
445
446         my $reason = $self->check_chargable( $cdr,
447                                              'da_rewrote'   => $da_rewrote,
448                                              'option_cache' => \%opt_cache,
449                                            );
450
451         if ( $reason ) {
452
453           warn "not charging for CDR ($reason)\n" if $DEBUG;
454           $charge = 0;
455           # this will result in those CDRs being marked as done... is that 
456           # what we want?
457
458         } else {
459           
460           ###
461           # look up rate details based on called station id
462           # (or calling station id for toll free calls)
463           ###
464
465           my( $to_or_from );
466           if ( $cdr->is_tollfree && ! $disable_tollfree )
467           { #tollfree call
468             $to_or_from = 'from';
469             $number = $cdr->src;
470           } else { #regular call
471             $to_or_from = 'to';
472             $number = $cdr->dst;
473           }
474
475           warn "parsing call $to_or_from $number\n" if $DEBUG;
476
477           #remove non-phone# stuff and whitespace
478           $number =~ s/\s//g;
479 #          my $proto = '';
480 #          $dest =~ s/^(\w+):// and $proto = $1; #sip:
481 #          my $siphost = '';
482 #          $dest =~ s/\@(.*)$// and $siphost = $1; # @10.54.32.1, @sip.example.com
483
484           #determine the country code
485           $countrycode = '';
486           if (    $number =~ /^$intl(((\d)(\d))(\d))(\d+)$/
487                || $number =~ /^\+(((\d)(\d))(\d))(\d+)$/
488              )
489           {
490
491             my( $three, $two, $one, $u1, $u2, $rest ) = ( $1,$2,$3,$4,$5,$6 );
492             #first look for 1 digit country code
493             if ( qsearch('rate_prefix', { 'countrycode' => $one } ) ) {
494               $countrycode = $one;
495               $number = $u1.$u2.$rest;
496             } elsif ( qsearch('rate_prefix', { 'countrycode' => $two } ) ) { #or 2
497               $countrycode = $two;
498               $number = $u2.$rest;
499             } else { #3 digit country code
500               $countrycode = $three;
501               $number = $rest;
502             }
503
504           } else {
505             $countrycode = length($domestic_prefix) ? $domestic_prefix : '1';
506             $number =~ s/^$countrycode//;# if length($number) > 10;
507           }
508
509           warn "rating call $to_or_from +$countrycode $number\n" if $DEBUG;
510           $pretty_destnum = "+$countrycode $number";
511           #asterisks here causes inserting the detail to barf, so:
512           $pretty_destnum =~ s/\*//g;
513
514           my $eff_ratenum = $cdr->is_tollfree('accountcode')
515             ? $cust_pkg->part_pkg->option('accountcode_tollfree_ratenum')
516             : '';
517
518           my $intrastate_ratenum = $cust_pkg->part_pkg->option('intrastate_ratenum');
519           if ( $intrastate_ratenum && !$cdr->is_tollfree ) {
520             $ratename = 'Interstate'; #until proven otherwise
521             # this is relatively easy only because:
522             # -assume all numbers are valid NANP numbers NOT in a fully-qualified format
523             # -disregard toll-free
524             # -disregard private or unknown numbers
525             # -there is exactly one record in rate_prefix for a given NPANXX
526             # -default to interstate if we can't find one or both of the prefixes
527             my $dstprefix = $cdr->dst;
528             $dstprefix =~ /^(\d{6})/;
529             $dstprefix = qsearchs('rate_prefix', {   'countrycode' => '1', 
530                                                         'npa' => $1, 
531                                                  }) || '';
532             my $srcprefix = $cdr->src;
533             $srcprefix =~ /^(\d{6})/;
534             $srcprefix = qsearchs('rate_prefix', {   'countrycode' => '1',
535                                                      'npa' => $1, 
536                                                  }) || '';
537             if ($srcprefix && $dstprefix
538                 && $srcprefix->state && $dstprefix->state
539                 && $srcprefix->state eq $dstprefix->state) {
540               $eff_ratenum = $intrastate_ratenum;
541               $ratename = 'Intrastate'; # XXX possibly just use the ratename?
542             }
543           }
544
545           $eff_ratenum ||= $ratenum;
546           $rate = qsearchs('rate', { 'ratenum' => $eff_ratenum })
547             or die "ratenum $eff_ratenum not found!";
548
549           my @ltime = localtime($cdr->startdate);
550           $weektime = $ltime[0] + 
551                       $ltime[1]*60 +   #minutes
552                       $ltime[2]*3600 + #hours
553                       $ltime[6]*86400; #days since sunday
554           # if there's no timed rate_detail for this time/region combination,
555           # dest_detail returns the default.  There may still be a timed rate 
556           # that applies after the starttime of the call, so be careful...
557           $rate_detail = $rate->dest_detail({ 'countrycode' => $countrycode,
558                                               'phonenum'    => $number,
559                                               'weektime'    => $weektime,
560                                               'cdrtypenum'  => $cdr->cdrtypenum,
561                                             });
562
563           if ( $rate_detail ) {
564
565             $rate_region = $rate_detail->dest_region;
566             $regionnum = $rate_region->regionnum;
567             $regionname = $rate_region->regionname;
568             warn "  found rate for regionnum $regionnum ".
569                  "and rate detail $rate_detail\n"
570               if $DEBUG;
571
572             if ( !exists($interval_cache{$regionnum}) ) {
573               my @intervals = (
574                 sort { $a->stime <=> $b->stime }
575                 map { my $r = $_->rate_time; $r ? $r->intervals : () }
576                 $rate->rate_detail
577               );
578               $interval_cache{$regionnum} = \@intervals;
579               warn "  cached ".scalar(@intervals)." interval(s)\n"
580                 if $DEBUG;
581             }
582
583           } elsif ( $ignore_unrateable ) {
584
585             $rate_region = '';
586             $regionnum = '';
587             #code below will throw a warning & skip
588
589           } else {
590
591             die "FATAL: no rate_detail found in ".
592                 $rate->ratenum. ":". $rate->ratename. " rate plan ".
593                 "for +$countrycode $number (CDR acctid ". $cdr->acctid. "); ".
594                 "add a rate or set ignore_unrateable flag on the package def\n";
595           }
596
597         }
598
599       } elsif ( $rating_method eq 'upstream_simple' ) {
600
601         #XXX $charge = sprintf('%.2f', $cdr->upstream_price);
602         $charge = sprintf('%.3f', $cdr->upstream_price);
603         $charges += $charge;
604         warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
605
606         @call_details = ($cdr->downstream_csv( 'format' => $output_format,
607                                                'charge' => $charge,
608                                              )
609                         );
610         $classnum = $cdr->calltypenum;
611
612       } elsif ( $rating_method eq 'single_price' ) {
613
614         # a little false laziness w/below
615         # $rate_detail = new FS::rate_detail({sec_granularity => ... }) ?
616
617         my $granularity = length($self->option('sec_granularity'))
618                             ? $self->option('sec_granularity')
619                             : 60;
620
621         $seconds = $use_duration ? $cdr->duration : $cdr->billsec;
622
623         $seconds += $granularity - ( $seconds % $granularity )
624           if $seconds      # don't granular-ize 0 billsec calls (bills them)
625           && $granularity  # 0 is per call
626           && $seconds % $granularity;
627         my $minutes = $granularity ? ($seconds / 60) : 1;
628         $charge = sprintf('%.4f', ( $self->option('min_charge') * $minutes )
629                                   + 0.0000000001 ); #so 1.00005 rounds to 1.0001
630
631         warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
632         $charges += $charge;
633
634         @call_details = ($cdr->downstream_csv( 'format'  => $output_format,
635                                                'charge'  => $charge,
636                                                'seconds' => ($use_duration ? 
637                                                              $cdr->duration : 
638                                                              $cdr->billsec),
639                                                'granularity' => $granularity,
640                                              )
641                         );
642
643       } else {
644         die "don't know how to rate CDRs using method: $rating_method\n";
645       }
646
647       ###
648       # find the price and add detail to the invoice
649       ###
650
651       # if $rate_detail is not found, skip this CDR... i.e. 
652       # don't add it to invoice, don't set its status to done,
653       # don't call downstream_csv or something on it...
654       # but DO emit a warning...
655       #if ( ! $rate_detail && ! scalar(@call_details) ) {}
656       if ( ! $rate_detail && $charge eq '' ) {
657
658         if ( $ignore_unrateable == 2 ) {
659           # mark the CDR as unrateable
660           my $error = $cdr->set_status_and_rated_price(
661             'failed',
662             '',
663             $cust_svc->svcnum
664           );
665           die $error if $error;
666         }
667         elsif ( $ignore_unrateable == 1 ) {
668           # warn and continue
669           warn "no rate_detail found for CDR.acctid: ". $cdr->acctid.
670                "; skipping\n"
671         } #if $ignore_unrateable
672
673       } else { # there *is* a rate_detail (or call_details), proceed...
674         # About this section:
675         # We don't round _anything_ (except granularizing) 
676         # until the final $charge = sprintf("%.2f"...).
677
678         unless ( @call_details || ( $charge ne '' && $charge == 0 ) ) {
679
680           my $seconds_left = $use_duration ? $cdr->duration : $cdr->billsec;
681           # charge for the first (conn_sec) seconds
682           $seconds = min($seconds_left, $rate_detail->conn_sec);
683           $seconds_left -= $seconds; 
684           $weektime     += $seconds;
685           $charge = $rate_detail->conn_charge; 
686
687           my $etime;
688           while($seconds_left) {
689             my $ratetimenum = $rate_detail->ratetimenum; # may be empty
690
691             # find the end of the current rate interval
692             if(@{ $interval_cache{$regionnum} } == 0) {
693               # There are no timed rates in this group, so just stay 
694               # in the default rate_detail for the entire duration.
695               # Set an "end" of 1 past the end of the current call.
696               $etime = $weektime + $seconds_left + 1;
697             } 
698             elsif($ratetimenum) {
699               # This is a timed rate, so go to the etime of this interval.
700               # If it's followed by another timed rate, the stime of that 
701               # interval should match the etime of this one.
702               my $interval = $rate_detail->rate_time->contains($weektime);
703               $etime = $interval->etime;
704             }
705             else {
706               # This is a default rate, so use the stime of the next 
707               # interval in the sequence.
708               my $next_int = first { $_->stime > $weektime } 
709                               @{ $interval_cache{$regionnum} };
710               if ($next_int) {
711                 $etime = $next_int->stime;
712               }
713               else {
714                 # weektime is near the end of the week, so decrement 
715                 # it by a full week and use the stime of the first 
716                 # interval.
717                 $weektime -= (3600*24*7);
718                 $etime = $interval_cache{$regionnum}->[0]->stime;
719               }
720             }
721
722             my $charge_sec = min($seconds_left, $etime - $weektime);
723
724             $seconds_left -= $charge_sec;
725
726             $included_min{$regionnum}{$ratetimenum} = $rate_detail->min_included
727               unless exists $included_min{$regionnum}{$ratetimenum};
728
729             my $granularity = $rate_detail->sec_granularity;
730
731             my $minutes;
732             if ( $granularity ) { # charge per minute
733               # Round up to the nearest $granularity
734               if ( $charge_sec and $charge_sec % $granularity ) {
735                 $charge_sec += $granularity - ($charge_sec % $granularity);
736               }
737               $minutes = $charge_sec / 60; #don't round this
738             }
739             else { # per call
740               $minutes = 1;
741               $seconds_left = 0;
742             }
743
744             $seconds += $charge_sec;
745
746             $region_group_included_min -= $minutes 
747                 if $region_group && $rate_detail->region_group;
748
749             $included_min{$regionnum}{$ratetimenum} -= $minutes;
750             if ( ($region_group_included_min <= 0 || !$rate_detail->region_group)
751                           && $included_min{$regionnum}{$ratetimenum} <= 0 ) {
752               my $charge_min = 0 - $included_min{$regionnum}{$ratetimenum}; #XXX should preserve
753                                                               #(display?) this
754               $included_min{$regionnum}{$ratetimenum} = 0;
755               $charge += ($rate_detail->min_charge * $charge_min); #still not rounded
756             }
757             elsif( $region_group_included_min > 0 && $region_group
758                 && $rate_detail->region_group ) {
759                 $included_min{$regionnum}{$ratetimenum} = 0 
760             }
761
762             # choose next rate_detail
763             $rate_detail = $rate->dest_detail({ 'countrycode' => $countrycode,
764                                                 'phonenum'    => $number,
765                                                 'weektime'    => $etime,
766                                                 'cdrtypenum'  => $cdr->cdrtypenum })
767                     if($seconds_left);
768             # we have now moved forward to $etime
769             $weektime = $etime;
770
771           } #while $seconds_left
772           # this is why we need regionnum/rate_region....
773           warn "  (rate region $rate_region)\n" if $DEBUG;
774
775           $classnum = $rate_detail->classnum;
776           $charge = sprintf('%.2f', $charge + 0.000001); # NOW round it.
777           warn "Incrementing \$charges by $charge.  Now $charges\n" if $DEBUG;
778           $charges += $charge;
779
780           if ( !$self->sum_usage ) {
781             @call_details = (
782               $cdr->downstream_csv( 'format'         => $output_format,
783                                     'granularity'    => $rate_detail->sec_granularity, 
784                                     'seconds'        => ($use_duration ?
785                                                          $cdr->duration :
786                                                          $cdr->billsec),
787                                     'charge'         => $charge,
788                                     'pretty_dst'     => $pretty_destnum,
789                                     'dst_regionname' => $regionname,
790                                   )
791             );
792           }
793         } #if(there is a rate_detail)
794
795         #if ( $charge > 0 ) {
796         # generate a detail record for every call; filter out $charge = 0 
797         # later.
798         my $call_details;
799         my $phonenum = $svc_x->phonenum;
800
801         if ( scalar(@call_details) == 1 ) {
802           $call_details =
803           { format      => 'C',
804             detail      => $call_details[0],
805             amount      => $charge,
806             classnum    => $classnum,
807             phonenum    => $phonenum,
808             accountcode => $cdr->accountcode,
809             startdate   => $cdr->startdate,
810             duration    => $seconds,
811             regionname  => $regionname,
812           };
813         } else { #only used for $rating_method eq 'upstream' now
814           # and for sum_ formats
815           $csv->combine(@call_details);
816           $call_details =
817           { format      => 'C',
818             detail      => $csv->string,
819             amount      => $charge,
820             classnum    => $classnum,
821             phonenum    => $phonenum,
822             accountcode => $cdr->accountcode,
823             startdate   => $cdr->startdate,
824             duration    => $seconds,
825             regionname  => $regionname,
826           };
827         }
828         $call_details->{'ratename'} = $ratename;
829
830         push @invoice_details_sort, [ $call_details, $cdr->calldate_unix ];
831         #} $charge > 0
832
833         # if the customer flag is on, call "downstream_csv" or something
834         # like it to export the call downstream!
835         # XXX price plan option to pick format, or something...
836         #$downstream_cdr .= $cdr->downstream_csv( 'format' => 'XXX format' )
837         #  if $spool_cdr;
838
839         my $error = $cdr->set_status_and_rated_price( 'done',
840                                                       $charge,
841                                                       $cust_svc->svcnum,
842                                                     );
843         die $error if $error;
844
845       }
846
847     } # $cdr
848
849     if ( !$self->sum_usage ) {
850       #sort them
851       my @sorted_invoice_details = 
852         sort { @{$a}[1] <=> @{$b}[1] } @invoice_details_sort;
853       foreach my $sorted_call_detail ( @sorted_invoice_details ) {
854         my $d = $sorted_call_detail->[0];
855         push @$details, $d if $d->{amount} > 0;
856       }
857     }
858     else { #$self->sum_usage
859         push @$details, $self->sum_detail($svc_x, \@invoice_details_sort);
860     }
861   } # $cust_svc
862
863   unshift @$details, { format => 'C',
864                        detail => FS::cdr::invoice_header($output_format),
865                      }
866     if @$details && $rating_method ne 'upstream';
867
868   $charges;
869 }
870
871 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
872 sub check_chargable {
873   my( $self, $cdr, %flags ) = @_;
874
875   #should have some better way of checking these options from a hash
876   #or something
877
878   my @opt = qw(
879     use_amaflags
880     use_carrierid
881     use_cdrtypenum
882     ignore_cdrtypenum
883     disposition_in
884     ignore_disposition
885     skip_dst_prefix
886     skip_dcontext
887     skip_dstchannel_prefix
888     skip_src_length_more noskip_src_length_accountcode_tollfree
889     skip_dst_length_less noskip_dst_length_accountcode_tollfree
890     skip_lastapp
891     skip_max_callers
892   );
893   foreach my $opt (grep !exists($flags{option_cache}->{$_}), @opt ) {
894     $flags{option_cache}->{$opt} = $self->option($opt, 1);
895   }
896   my %opt = %{ $flags{option_cache} };
897
898   return 'amaflags != 2'
899     if $opt{'use_amaflags'} && $cdr->amaflags != 2;
900
901   return "disposition NOT IN ( $opt{'disposition_in'} )"
902     if $opt{'disposition_in'} =~ /\S/
903     && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'disposition_in'});
904   
905   return "disposition IN ( $opt{'ignore_disposition'} )"
906     if $opt{'ignore_disposition'} =~ /\S/
907     && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'ignore_disposition'});
908
909   foreach(split(/\s*,\s*/, $opt{'skip_dst_prefix'})) {
910     return "dst starts with '$_'"
911     if length($_) && substr($cdr->dst,0,length($_)) eq $_;
912   }
913
914   return "carrierid != $opt{'use_carrierid'}"
915     if length($opt{'use_carrierid'})
916     && $cdr->carrierid ne $opt{'use_carrierid'} #ne otherwise 0 matches ''
917     && ! $flags{'da_rewrote'};
918
919   # unlike everything else, use_cdrtypenum is applied in FS::svc_x::get_cdrs.
920   return "cdrtypenum != $opt{'use_cdrtypenum'}"
921     if length($opt{'use_cdrtypenum'})
922     && $cdr->cdrtypenum ne $opt{'use_cdrtypenum'}; #ne otherwise 0 matches ''
923   
924   return "cdrtypenum == $opt{'ignore_cdrtypenum'}"
925     if length($opt{'ignore_cdrtypenum'})
926     && $cdr->cdrtypenum eq $opt{'ignore_cdrtypenum'}; #eq otherwise 0 matches ''
927
928   return "dcontext IN ( $opt{'skip_dcontext'} )"
929     if $opt{'skip_dcontext'} =~ /\S/
930     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $opt{'skip_dcontext'});
931
932   my $len_prefix = length($opt{'skip_dstchannel_prefix'});
933   return "dstchannel starts with $opt{'skip_dstchannel_prefix'}"
934     if $len_prefix
935     && substr($cdr->dstchannel,0,$len_prefix) eq $opt{'skip_dstchannel_prefix'};
936
937   my $dst_length = $opt{'skip_dst_length_less'};
938   return "destination less than $dst_length digits"
939     if $dst_length && length($cdr->dst) < $dst_length
940     && ! ( $opt{'noskip_dst_length_accountcode_tollfree'}
941             && $cdr->is_tollfree('accountcode')
942          );
943
944   return "lastapp is $opt{'skip_lastapp'}"
945     if length($opt{'skip_lastapp'}) && $cdr->lastapp eq $opt{'skip_lastapp'};
946
947   my $src_length = $opt{'skip_src_length_more'};
948   if ( $src_length ) {
949
950     if ( $opt{'noskip_src_length_accountcode_tollfree'} ) {
951
952       if ( $cdr->is_tollfree('accountcode') ) {
953         return "source less than or equal to $src_length digits"
954           if length($cdr->src) <= $src_length;
955       } else {
956         return "source more than $src_length digits"
957           if length($cdr->src) > $src_length;
958       }
959
960     } else {
961       return "source more than $src_length digits"
962         if length($cdr->src) > $src_length;
963     }
964
965   }
966
967   return "max_callers <= $opt{skip_max_callers}"
968     if length($opt{'skip_max_callers'})
969       and length($cdr->max_callers)
970       and $cdr->max_callers <= $opt{'skip_max_callers'};
971
972   #all right then, rate it
973   '';
974 }
975
976 sub is_free {
977   0;
978 }
979
980 #  This equates svc_phone records; perhaps svc_phone should have a field
981 #  to indicate it represents a line
982 sub calc_units {    
983   my($self, $cust_pkg ) = @_;
984   my $count = 0;
985   if ( $self->option('count_available_phones', 1)) {
986     map { $count += ( $_->quantity || 0 ) }
987       grep { $_->part_svc->svcdb eq 'svc_phone' }
988       $cust_pkg->part_pkg->pkg_svc;
989   } else {
990     $count = 
991       scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
992   }
993   $count;
994 }
995
996 # tells whether cust_bill_pkg_detail should return a single line for 
997 # each phonenum
998 sub sum_usage {
999   my $self = shift;
1000   $self->option('output_format') =~ /^sum_/;
1001 }
1002
1003 sub sum_detail {
1004   my $self = shift;
1005   my $svc_x = shift;
1006   my $invoice_details = shift || [];
1007   return () if !@$invoice_details;
1008   my $details_by_rate = {};
1009   # combine the entire set of CDRs
1010   foreach ( @$invoice_details ) {
1011     my $d = $_->[0];
1012     my $sum = $details_by_rate->{ $d->{ratename} } ||= {
1013       amount      => 0,
1014       format      => 'C',
1015       classnum    => '', #XXX
1016       duration    => 0,
1017       phonenum    => $svc_x->phonenum,
1018       accountcode => '', #XXX
1019       startdate   => '', #XXX
1020       regionname  => '',
1021       count       => 0,
1022     };
1023     $sum->{amount} += $d->{amount};
1024     $sum->{duration} += $d->{duration};
1025     $sum->{count}++;
1026   }
1027   my @details;
1028   foreach my $ratename ( sort keys(%$details_by_rate) ) {
1029     my $sum = $details_by_rate->{$ratename};
1030     next if $sum->{count} == 0;
1031     my $total_cdr = FS::cdr->new({
1032         'billsec' => $sum->{duration},
1033         'src'     => $sum->{phonenum},
1034       });
1035     $sum->{detail} = $total_cdr->downstream_csv(
1036       format    => $self->option('output_format'),
1037       seconds   => $sum->{duration},
1038       charge    => sprintf('%.2f',$sum->{amount}),
1039       ratename  => $ratename,
1040       phonenum  => $sum->{phonenum},
1041       count     => $sum->{count},
1042     );
1043     push @details, $sum;
1044   }
1045   @details;
1046 }
1047
1048 # and whether cust_bill should show a detail line for the service label 
1049 # (separate from usage details)
1050 sub hide_svc_detail {
1051   my $self = shift;
1052   $self->option('output_format') =~ /^sum_/;
1053 }
1054
1055
1056 1;
1057