X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr.pm;h=0771a7b32781bdccb50ea70a8c2b54c1c9853949;hb=033547be1c5a0ba76c5f578fd7d656735e12a9bd;hp=583e728c55b9857afe6028425e408cffa5532fe5;hpb=b2f85194e8e090dd6fb05acbe4575dd9440be134;p=freeside.git diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index 583e728c5..0771a7b32 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -338,7 +338,7 @@ sub check { #check the foreign keys even? #do we want to outright *reject* the CDR? my $error = - $self->ut_numbern('acctid') + $self->ut_numbern('acctid'); #add a config option to turn these back on if someone needs 'em # @@ -350,7 +350,7 @@ sub check { # # # Telstra =1, Optus = 2, RSL COM = 3 # || $self->ut_foreign_keyn('carrierid', 'cdr_carrier', 'carrierid' ) - ; + return $error if $error; $self->SUPER::check; @@ -896,8 +896,8 @@ sub rate_prefix { # The rate detail itself has included minutes. We MUST have a place # to track them. my $included_min = $opt{'detail_included_min_hashref'} - or die "unable to rate CDR: rate detail has included minutes, but ". - "no detail_included_min_hashref provided.\n"; + or return "unable to rate CDR: rate detail has included minutes, but ". + "no detail_included_min_hashref provided.\n"; # by default, set the included minutes for this region/time to # what's in the rate_detail @@ -911,7 +911,7 @@ sub rate_prefix { $charge_sec -= ($included_min->{$regionnum}{$ratetimenum} * 60); $included_min->{$regionnum}{$ratetimenum} = 0; } - } elsif ( ${ $opt{'plan_included_min'} } > 0 ) { + } elsif ( $opt{plan_included_min} && ${ $opt{plan_included_min} } > 0 ) { # The package definition has included minutes, but only for in-group # rate details. Decrement them if this is an in-group call. if ( $rate_detail->region_group ) { @@ -999,6 +999,8 @@ sub rate_upstream_simple { sprintf('%.3f', $self->upstream_price), $opt{'svcnum'}, 'rated_classnum' => $self->calltypenum, + 'rated_seconds' => $self->billsec, + # others? upstream_*_regionname => rated_regionname is possible ); } @@ -1047,6 +1049,31 @@ sub rate_single_price { } +=item rate_cost + +Rates an already-rated CDR according to the cost fields from the rate plan. + +Returns the amount. + +=cut + +sub rate_cost { + my $self = shift; + + return 0 unless $self->rated_ratedetailnum; + + my $rate_detail = + qsearchs('rate_detail', { 'ratedetailnum' => $self->rated_ratedetailnum } ); + + return $rate_detail->min_cost if $self->rated_granularity == 0; + + my $minutes = $self->rated_seconds / 60; + my $charge = $rate_detail->conn_cost + $minutes * $rate_detail->min_cost; + + sprintf('%.2f', $charge + .00001 ); + +} + =item cdr_termination [ TERMPART ] =cut @@ -1208,6 +1235,10 @@ my %export_names = ( 'name' => 'Summary, one line per destination prefix', 'invoice_header' => 'Caller,Rate,Calls,Minutes,Price', }, + 'sum_count_class' => { + 'name' => 'Summary, one line per usage class', + 'invoice_header' => 'Caller,Class,Calls,Price', + }, ); my %export_formats = (); @@ -1488,8 +1519,8 @@ as keys (for use with batch_import) and "pretty" format names as values. my %cdr_info; foreach my $INC ( @INC ) { - warn "globbing $INC/FS/cdr/*.pm\n" if $DEBUG; - foreach my $file ( glob("$INC/FS/cdr/*.pm") ) { + warn "globbing $INC/FS/cdr/[a-z]*.pm\n" if $DEBUG; + foreach my $file ( glob("$INC/FS/cdr/[a-z]*.pm") ) { warn "attempting to load CDR format info from $file\n" if $DEBUG; $file =~ /\/(\w+)\.pm$/ or do { warn "unrecognized file in $INC/FS/cdr/: $file\n";