1 package FS::part_pkg::voip_inbound;
2 use base qw( FS::part_pkg::recur_Common );
5 use vars qw($DEBUG %info);
10 use FS::Record qw(qsearchs qsearch);
13 use FS::detail_format;
17 tie my %temporalities, 'Tie::IxHash',
18 'upcoming' => "Upcoming (future)",
19 'preceding' => "Preceding (past)",
22 tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities();
25 'name' => 'VoIP flat rate pricing of CDRs for inbound calls',
26 'shortname' => 'VoIP/telco CDR rating (inbound)',
27 'inherit_fields' => [ 'prorate_Mixin', 'global_Mixin' ],
29 #false laziness w/flat.pm
30 'recur_temporality' => { 'name' => 'Charge recurring fee for period',
32 'select_options' => \%temporalities,
34 'cutoff_day' => { 'name' => 'Billing Day (1 - 28) for prorating or '.
39 'recur_method' => { 'name' => 'Recurring fee method',
41 'select_options' => \%FS::part_pkg::recur_Common::recur_method,
44 'min_charge' => { 'name' => 'Charge per minute',
47 'min_included' => { 'name' => 'Minutes included',
50 'sec_granularity' => { 'name' => 'Granularity',
52 'select_options' => \%granularity,
55 'default_prefix' => { 'name' => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
59 'use_amaflags' => { 'name' => 'Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").',
63 'use_carrierid' => { 'name' => 'Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: ',
66 'use_cdrtypenum' => { 'name' => 'Only charge for CDRs where the CDR Type is set to this cdrtypenum: ',
69 'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to this cdrtypenum: ',
72 'use_calltypenum' => { 'name' => 'Only charge for CDRs where the CDR Call Type is set to this cdrtypenum: ',
75 'ignore_calltypenum' => { 'name' => 'Do not charge for CDRs where the CDR Call Type is set to this cdrtypenum: ',
78 'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
81 'disposition_in' => { 'name' => 'Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
84 'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values:',
87 'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
90 'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
93 'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value',
96 'use_duration' => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
100 #false laziness w/cdr_termination.pm
101 'output_format' => { 'name' => 'CDR invoice display format',
103 'select_options' => { FS::cdr::invoice_formats() },
104 'default' => 'default', #XXX test
107 'usage_section' => { 'name' => 'Section in which to place usage charges (whether separated or not)',
110 'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
111 'type' => 'checkbox',
114 'usage_mandate' => { 'name' => 'Always put usage details in separate section',
115 'type' => 'checkbox',
119 'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call. Useful for prepaid.',
120 'type' => 'checkbox',
123 #XXX also have option for an external db
124 # 'cdr_location' => { 'name' => 'CDR database location'
125 # 'type' => 'select',
126 # 'select_options' => \%cdr_location,
127 # 'select_callback' => {
129 # 'enable' => [ 'datasrc', 'username', 'password' ],
132 # 'disable' => [ 'datasrc', 'username', 'password' ],
136 # 'datasrc' => { 'name' => 'DBI data source for external CDR table',
139 # 'username' => { 'name' => 'External database username',
142 # 'password' => { 'name' => 'External database password',
149 recur_method cutoff_day ),
150 FS::part_pkg::prorate_Mixin::fieldorder,
151 qw( min_charge min_included sec_granularity
155 use_cdrtypenum ignore_cdrtypenum
156 use_calltypenum ignore_calltypenum
157 ignore_disposition disposition_in
158 skip_dcontext skip_dstchannel_prefix
159 skip_dst_length_less skip_lastapp
161 output_format usage_mandate summarize_usage usage_section
170 my $str = $self->SUPER::price_info(@_);
171 $str .= " plus usage" if $str;
177 my($cust_pkg, $sdate, $details, $param ) = @_;
181 $charges += $self->calc_usage(@_);
182 $charges += ($cust_pkg->quantity || 1) * $self->calc_recur_Common(@_);
191 # my($cust_pkg, $sdate, $details, $param ) = @_;
193 # $self->calc_usage(@_);
196 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
200 my($cust_pkg, $sdate, $details, $param ) = @_;
202 #my $last_bill = $cust_pkg->last_bill;
203 my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
206 if $self->recur_temporality eq 'preceding'
207 && ( $last_bill eq '' || $last_bill == 0 );
209 my $spool_cdr = $cust_pkg->cust_main->spool_cdr;
214 # my $downstream_cdr = '';
216 my $included_min = $self->option('min_included', 1) || 0;
217 my $use_duration = $self->option('use_duration');
218 my $output_format = $self->option('output_format', 1) || 'default';
221 FS::detail_format->new($output_format,
224 locale => $cust_pkg->cust_main->locale
227 my $granularity = length($self->option('sec_granularity'))
228 ? $self->option('sec_granularity')
231 #for check_chargable, so we don't keep looking up options inside the loop
234 my $csv = new Text::CSV_XS;
236 foreach my $cust_svc (
237 grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc
239 my $svc_phone = $cust_svc->svc_x;
241 my $cdr_search = $svc_phone->psearch_cdrs(
243 'default_prefix' => $self->option('default_prefix'),
244 'status' => '', # unprocessed only
247 $cdr_search->limit(1000);
248 $cdr_search->increment(0);
249 while ( my $cdr = $cdr_search->fetch ) {
251 my $reason = $self->check_chargable( $cdr,
252 'option_cache' => \%opt_cache,
255 warn "not charging for CDR ($reason)\n" if $DEBUG;
256 $cdr_search->adjust(1);
261 warn "rating inbound CDR $cdr\n".
262 join('', map { " $_ => ". $cdr->{$_}. "\n" } keys %$cdr );
265 my $seconds = $use_duration ? $cdr->duration : $cdr->billsec;
267 $seconds += $granularity - ( $seconds % $granularity )
268 if $seconds # don't granular-ize 0 billsec calls (bills them)
269 && $granularity; # 0 is per call
270 my $minutes = sprintf("%.1f",$seconds / 60);
271 $minutes =~ s/\.0$// if $granularity == 60; # count whole minutes, convert to integer
272 $minutes = 1 unless $granularity; # per call
274 my $charge_min = $minutes;
277 $included_min -= $minutes;
278 if ( $included_min > 0 ) {
282 $charge_min = 0 - $included_min;
286 $charge = sprintf('%.4f', ( $self->option('min_charge') * $charge_min )
287 + 0.00000001 ); #so 1.00005 rounds to 1.0001
292 $cdr->downstream_csv( 'format' => $output_format,
294 'seconds' => ($use_duration
298 'granularity' => $granularity,
303 # detail => $call_details[0],
305 # classnum => $cdr->calltypenum, #classnum
306 # #phonenum => $self->phonenum,
307 # accountcode => $cdr->accountcode,
308 # startdate => $cdr->startdate,
309 # duration => $seconds,
310 # # regionname?? => '', #regionname, not set for inbound calls
314 # eventually use FS::cdr::rate for this
315 my $error = $cdr->set_status_and_rated_price(
319 'rated_seconds' => $use_duration ? $cdr->duration : $cdr->billsec,
320 'rated_granularity' => $granularity,
321 'rated_classnum' => $cdr->calltypenum,
324 die $error if $error;
325 $formatter->append($cdr);
327 $cdr_search->adjust(1) if $cdr->freesidestatus eq '';
331 # unshift @$details, { format => 'C',
332 # detail => FS::cdr::invoice_header($output_format),
337 unshift @$details, $formatter->header if @$details;
342 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
343 # lots of false laziness w/voip_cdr...
344 sub check_chargable {
345 my( $self, $cdr, %flags ) = @_;
347 return 'amaflags != 2'
348 if $self->option_cacheable('use_amaflags') && $cdr->amaflags != 2;
350 return "disposition NOT IN ( ". $self->option_cacheable('disposition_in')." )"
351 if $self->option_cacheable('disposition_in') =~ /\S/
352 && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('disposition_in'));
354 return "disposition IN ( ". $self->option_cacheable('ignore_disposition')." )"
355 if $self->option_cacheable('ignore_disposition') =~ /\S/
356 && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('ignore_disposition'));
358 return "carrierid NOT IN ( ". $self->option_cacheable('use_carrierid'). " )"
359 if $self->option_cacheable('use_carrierid') =~ /\S/
360 && !grep { $cdr->carrierid eq $_ } split(/\s*,\s*/, $self->option_cacheable('use_carrierid')); #eq otherwise 0 matches ''
362 # unlike everything else, use_cdrtypenum is applied in FS::svc_x::get_cdrs.
363 return "cdrtypenum != ". $self->option_cacheable('use_cdrtypenum')
364 if length($self->option_cacheable('use_cdrtypenum'))
365 && $cdr->cdrtypenum ne $self->option_cacheable('use_cdrtypenum'); #ne otherwise 0 matches ''
367 return "cdrtypenum == ". $self->option_cacheable('ignore_cdrtypenum')
368 if length($self->option_cacheable('ignore_cdrtypenum'))
369 && $cdr->cdrtypenum eq $self->option_cacheable('ignore_cdrtypenum'); #eq otherwise 0 matches ''
371 # unlike everything else, use_calltypenum is applied in FS::svc_x::get_cdrs.
372 return "calltypenum != ". $self->option_cacheable('use_calltypenum')
373 if length($self->option_cacheable('use_calltypenum'))
374 && $cdr->calltypenum ne $self->option_cacheable('use_calltypenum'); #ne otherwise 0 matches ''
376 return "calltypenum == ". $self->option_cacheable('ignore_calltypenum')
377 if length($self->option_cacheable('ignore_calltypenum'))
378 && $cdr->calltypenum eq $self->option_cacheable('ignore_calltypenum'); #eq otherwise 0 matches ''
380 return "dcontext IN ( ". $self->option_cacheable('skip_dcontext'). " )"
381 if $self->option_cacheable('skip_dcontext') =~ /\S/
382 && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $self->option_cacheable('skip_dcontext'));
384 my $len_prefix = length($self->option_cacheable('skip_dstchannel_prefix'));
385 return "dstchannel starts with ". $self->option_cacheable('skip_dstchannel_prefix')
387 && substr($cdr->dstchannel,0,$len_prefix) eq $self->option_cacheable('skip_dstchannel_prefix');
389 my $dst_length = $self->option_cacheable('skip_dst_length_less');
390 return "destination less than $dst_length digits"
391 if $dst_length && length($cdr->dst) < $dst_length;
393 return "lastapp is ". $self->option_cacheable('skip_lastapp')
394 if length($self->option_cacheable('skip_lastapp')) && $cdr->lastapp eq $self->option_cacheable('skip_lastapp');
396 #all right then, rate it
404 # This equates svc_phone records; perhaps svc_phone should have a field
405 # to indicate it represents a line
406 # #XXX no count_available_phones?
408 my($self, $cust_pkg ) = @_;
410 scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);