X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr.pm;h=aa1c4067f4ceff5aaf71342412a29c15fe74f6fb;hb=02d73ef84103d6bdaf49e6a179a0ad46f9719d25;hp=331ac0f2f9d195066e2cb5229249e3643414336c;hpb=42b6338522f6dc66771f49b38191b4201462fd82;p=freeside.git diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index 331ac0f2f..aa1c4067f 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -3,7 +3,7 @@ package FS::cdr; use strict; use vars qw( @ISA @EXPORT_OK $DEBUG $me $conf $cdr_prerate %cdr_prerate_cdrtypenums - $use_lrn $support_key + $use_lrn $support_key $max_duration ); use Exporter; use List::Util qw(first min); @@ -50,6 +50,8 @@ FS::UID->install_callback( sub { $support_key = $conf->config('support-key'); $use_lrn = $conf->exists('cdr-lrn_lookup'); + $max_duration = $conf->config('cdr-max_duration') || 0; + }); =head1 NAME @@ -170,7 +172,7 @@ following fields are currently supported: =item freesiderewritestatus - NULL, done, skipped -=item cdrbatch +=item cdrbatchnum =item detailnum - Link to invoice detail (L) @@ -240,7 +242,6 @@ sub table_info { 'svcnum' => 'Freeside service', 'freesidestatus' => 'Freeside status', 'freesiderewritestatus' => 'Freeside rewrite status', - 'cdrbatch' => 'Legacy batch', 'cdrbatchnum' => 'Batch', 'detailnum' => 'Freeside invoice detail line', }, @@ -517,6 +518,7 @@ sub set_status_and_rated_price { } else { $self->freesidestatus($status); + $self->freesidestatustext($opt{'statustext'}) if exists($opt{'statustext'}); $self->rated_price($rated_price); $self->$_($opt{$_}) foreach grep exists($opt{$_}), map "rated_$_", @@ -649,6 +651,10 @@ sub rate_prefix { my $part_pkg = $opt{'part_pkg'} or return "No part_pkg specified"; my $cust_pkg = $opt{'cust_pkg'}; + ### + # (Directory assistance) rewriting + ### + my $da_rewrote = 0; # this will result in those CDRs being marked as done... is that # what we want? @@ -664,6 +670,10 @@ sub rate_prefix { $da_rewrote = 1; } + ### + # Checks to see if the CDR is chargeable + ### + my $reason = $part_pkg->check_chargable( $self, 'da_rewrote' => $da_rewrote, ); @@ -672,6 +682,7 @@ sub rate_prefix { return $self->set_status_and_rated_price( 'skipped', 0, $opt{'svcnum'}, + 'statustext' => $reason, ); } @@ -700,6 +711,17 @@ sub rate_prefix { } } + my $rated_seconds = $part_pkg->option_cacheable('use_duration') + ? $self->duration + : $self->billsec; + if ( $max_duration > 0 && $rated_seconds > $max_duration ) { + return $self->set_status_and_rated_price( + 'failed', + '', + $opt{'svcnum'}, + ); + } + ### # look up rate details based on called station id # (or calling station id for toll free calls) @@ -872,9 +894,6 @@ sub rate_prefix { # We don't round _anything_ (except granularizing) # until the final $charge = sprintf("%.2f"...). - my $rated_seconds = $part_pkg->option_cacheable('use_duration') - ? $self->duration - : $self->billsec; my $seconds_left = $rated_seconds; #no, do this later so it respects (group) included minutes @@ -1659,7 +1678,12 @@ foreach my $INC ( @INC ) { tie my %import_formats, 'Tie::IxHash', map { $_ => $cdr_info{$_}->{'name'} } - sort { $cdr_info{$a}->{'weight'} <=> $cdr_info{$b}->{'weight'} } + + #this is not doing anything useful anymore + #sort { $cdr_info{$a}->{'weight'} <=> $cdr_info{$b}->{'weight'} } + #so just sort alpha + sort { lc($cdr_info{$a}->{'name'}) cmp lc($cdr_info{$b}->{'name'}) } + grep { exists($cdr_info{$_}->{'import_fields'}) } keys %cdr_info; @@ -1868,41 +1892,6 @@ sub process_batch_import { # @columns = map { s/^ +//; $_; } @columns; # } -# _ upgrade_data -# -# Used by FS::Upgrade to migrate to a new database. - -sub _upgrade_data { - my ($class, %opts) = @_; - - warn "$me upgrading $class\n" if $DEBUG; - - my $sth = dbh->prepare( - 'SELECT DISTINCT(cdrbatch) FROM cdr WHERE cdrbatch IS NOT NULL' - ) or die dbh->errstr; - - $sth->execute or die $sth->errstr; - - my %cdrbatchnum = (); - while (my $row = $sth->fetchrow_arrayref) { - - my $cdr_batch = qsearchs( 'cdr_batch', { 'cdrbatch' => $row->[0] } ); - unless ( $cdr_batch ) { - $cdr_batch = new FS::cdr_batch { 'cdrbatch' => $row->[0] }; - my $error = $cdr_batch->insert; - die $error if $error; - } - - $cdrbatchnum{$row->[0]} = $cdr_batch->cdrbatchnum; - } - - $sth = dbh->prepare('UPDATE cdr SET cdrbatch = NULL, cdrbatchnum = ? WHERE cdrbatch IS NOT NULL AND cdrbatch = ?') or die dbh->errstr; - - foreach my $cdrbatch (keys %cdrbatchnum) { - $sth->execute($cdrbatchnum{$cdrbatch}, $cdrbatch) or die $sth->errstr; - } - -} =item ip_addr_sql FIELD RANGE