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