X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr.pm;h=2a235cc412da731f0a57eeed83cb1997823e17a3;hb=a70e4bb88f298f93292380d1e2feb80e1baa13f8;hp=c2a3d00ee1b55aec8d8b714a0c0467d82c7da915;hpb=1cf39475a4ba90ed0aa49ed983542077e4609c22;p=freeside.git diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index c2a3d00ee..2a235cc41 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -130,6 +130,8 @@ following fields are currently supported: =item freesidestatus - NULL, done (or something) +=item freesiderewritestatus - NULL, done (or something) + =item cdrbatch =back @@ -228,6 +230,7 @@ sub check { # || $self->ut_numbern('upstream_rateid') # || $self->ut_numbern('svcnum') # || $self->ut_textn('freesidestatus') +# || $self->ut_textn('freesiderewritestatus') # ; # return $error if $error; @@ -243,6 +246,55 @@ sub check { $self->billsec( $self->enddate - $self->answerdate ); } + $self->set_charged_party; + + #check the foreign keys even? + #do we want to outright *reject* the CDR? + my $error = + $self->ut_numbern('acctid') + + #add a config option to turn these back on if someone needs 'em + # + # #Usage = 1, S&E = 7, OC&C = 8 + # || $self->ut_foreign_keyn('cdrtypenum', 'cdr_type', 'cdrtypenum' ) + # + # #the big list in appendix 2 + # || $self->ut_foreign_keyn('calltypenum', 'cdr_calltype', 'calltypenum' ) + # + # # Telstra =1, Optus = 2, RSL COM = 3 + # || $self->ut_foreign_keyn('carrierid', 'cdr_carrier', 'carrierid' ) + ; + return $error if $error; + + $self->SUPER::check; +} + +=item is_tollfree + + Returns true when the cdr represents a toll free number and false otherwise. + +=cut + +sub is_tollfree { + my $self = shift; + ( $self->dst =~ /^(\+?1)?8(8|([02-7])\3)/ ) ? 1 : 0; +} + +=item set_charged_party + +If the charged_party field is already set, does nothing. Otherwise: + +If the cdr-charged_party-accountcode config option is enabled, sets the +charged_party to the accountcode. + +Otherwise sets the charged_party normally: to the src field in most cases, +or to the dst field if it is a toll free number. + +=cut + +sub set_charged_party { + my $self = shift; + my $conf = new FS::Conf; unless ( $self->charged_party ) { @@ -253,7 +305,7 @@ sub check { } else { - if ( $self->dst =~ /^(\+?1)?8[02-8]{2}/ ) { + if ( $self->is_tollfree ) { $self->charged_party($self->dst); } else { $self->charged_party($self->src); @@ -263,25 +315,14 @@ sub check { } - #check the foreign keys even? - #do we want to outright *reject* the CDR? - my $error = - $self->ut_numbern('acctid') + my $prefix = $conf->config('cdr-charged_party-truncate_prefix'); + my $prefix_len = length($prefix); + my $trunc_len = $conf->config('cdr-charged_party-truncate_length'); - #add a config option to turn these back on if someone needs 'em - # - # #Usage = 1, S&E = 7, OC&C = 8 - # || $self->ut_foreign_keyn('cdrtypenum', 'cdr_type', 'cdrtypenum' ) - # - # #the big list in appendix 2 - # || $self->ut_foreign_keyn('calltypenum', 'cdr_calltype', 'calltypenum' ) - # - # # Telstra =1, Optus = 2, RSL COM = 3 - # || $self->ut_foreign_keyn('carrierid', 'cdr_carrier', 'carrierid' ) - ; - return $error if $error; + $self->charged_party( substr($self->charged_party, 0, $trunc_len) ) + if $prefix_len && $trunc_len + && substr($self->charged_party, 0, $prefix_len) eq $prefix; - $self->SUPER::check; } =item set_status_and_rated_price STATUS [ RATED_PRICE ] @@ -436,14 +477,27 @@ my %export_names = ( }, 'default' => { 'name' => 'Default', - 'invoice_header' => 'Date,Time,Duration,Price,Number,Destination', + 'invoice_header' => 'Date,Time,Number,Destination,Duration,Price', }, 'source_default' => { 'name' => 'Default with source', - 'invoice_header' => 'Caller,Date,Time,Duration,Number,Destination,Price', + 'invoice_header' => 'Caller,Date,Time,Number,Destination,Duration,Price', + }, + 'accountcode_default' => { + 'name' => 'Default plus accountcode', + 'invoice_header' => 'Date,Time,Account,Number,Destination,Duration,Price', }, ); +my $duration_sub = sub { + my($cdr, %opt) = @_; + if ( $opt{minutes} ) { + $opt{minutes}. ( $opt{granularity} ? 'm' : ' call' ); + } else { + sprintf('%.2fm', $cdr->billsec / 60 ); + } +}; + my %export_formats = ( 'convergent' => [ 'carriername', #CARRIER @@ -465,8 +519,9 @@ my %export_formats = ( sub { time2str('%r', shift->calldate_unix ) }, #TIME 'userfield', #USER 'dst', #NUMBER_DIALED - sub { sprintf('%.2fm', shift->billsec / 60 ) }, #DURATION - sub { sprintf('%.3f', shift->upstream_price ) }, #PRICE + $duration_sub, #DURATION + #sub { sprintf('%.3f', shift->upstream_price ) }, #PRICE + sub { my($cdr, %opt) = @_; $opt{money_char}. $opt{charge}; }, #PRICE ], 'simple2' => [ sub { time2str('%D', shift->calldate_unix ) }, #DATE @@ -474,8 +529,9 @@ my %export_formats = ( #'userfield', #USER 'dst', #NUMBER_DIALED 'src', #called from - sub { sprintf('%.2fm', shift->billsec / 60 ) }, #DURATION - sub { sprintf('%.3f', shift->upstream_price ) }, #PRICE + $duration_sub, #DURATION + #sub { sprintf('%.3f', shift->upstream_price ) }, #PRICE + sub { my($cdr, %opt) = @_; $opt{money_char}. $opt{charge}; }, #PRICE ], 'default' => [ @@ -487,27 +543,26 @@ my %export_formats = ( sub { time2str('%r', shift->calldate_unix ) }, # time2str("%c", $cdr->calldate_unix), #XXX this should probably be a config option dropdown so they can select US vs- rest of world dates or whatnot - #DURATION - sub { my($cdr, %opt) = @_; - $opt{minutes}. ( $opt{granularity} ? 'm' : ' call' ); - }, - - #PRICE - sub { my($cdr, %opt) = @_; $opt{money_char}. $opt{charge}; }, - #DEST ("Number") sub { my($cdr, %opt) = @_; $opt{pretty_dst} || $cdr->dst; }, #REGIONNAME ("Destination") sub { my($cdr, %opt) = @_; $opt{dst_regionname}; }, + #DURATION + $duration_sub, + + #PRICE + sub { my($cdr, %opt) = @_; $opt{money_char}. $opt{charge}; }, + ], ); -$export_formats{'source_default'} = [ 'src', - @{ $export_formats{'default'} }[0..2], - @{ $export_formats{'default'} }[4..5], - @{ $export_formats{'default'} }[3], - ]; +$export_formats{'source_default'} = [ 'src', @{ $export_formats{'default'} }, ]; +$export_formats{'accountcode_default'} = + [ @{ $export_formats{'default'} }[0,1], + 'accountcode', + @{ $export_formats{'default'} }[2..5], + ]; sub downstream_csv { my( $self, %opt ) = @_; @@ -634,16 +689,19 @@ sub _cdr_min_parse { sub _cdr_date_parser_maker { my $field = shift; + my %options = @_; + my @fields = ref($field) ? @$field : ($field); return sub { - my( $cdr, $date ) = @_; - #$cdr->$field( _cdr_date_parse($date) ); - eval { $cdr->$field( _cdr_date_parse($date) ); }; - die "error parsing date for $field from $date: $@\n" if $@; + my( $cdr, $datestring ) = @_; + my $unixdate = eval { _cdr_date_parse($datestring, %options) }; + die "error parsing date for @fields from $datestring: $@\n" if $@; + $cdr->$_($unixdate) foreach @fields; }; } sub _cdr_date_parse { my $date = shift; + my %options = @_; return '' unless length($date); #that's okay, it becomes NULL @@ -663,7 +721,11 @@ sub _cdr_date_parse { return '' if $year == 1900 && $mon == 1 && $day == 1 && $hour == 0 && $min == 0 && $sec == 0; - timelocal($sec, $min, $hour, $day, $mon-1, $year); + if ($options{gmt}) { + timegm($sec, $min, $hour, $day, $mon-1, $year); + } else { + timelocal($sec, $min, $hour, $day, $mon-1, $year); + } } =item batch_import HASHREF @@ -672,43 +734,73 @@ Imports CDR records. Available options are: =over 4 -=item filehandle +=item file + +Filename =item format +=item params + +Hash reference of preset fields, typically cdrbatch + +=item empty_ok + +Set true to prevent throwing an error on empty imports + =back =cut -sub process_batch_import { - my $job = shift; +my %import_options = ( + 'table' => 'cdr', - my $opt = { - 'table' => 'cdr', - 'params' => [ 'format', 'cdrbatch' ], + 'formats' => { map { $_ => $cdr_info{$_}->{'import_fields'}; } + keys %cdr_info + }, - 'formats' => { map { $_ => $cdr_info{$_}->{'import_fields'}; } - keys %cdr_info - }, + #drop the || 'csv' to allow auto xls for csv types? + 'format_types' => { map { $_ => ( lc($cdr_info{$_}->{'type'}) || 'csv' ); } + keys %cdr_info + }, - #drop the || 'csv' to allow auto xls for csv types? - 'format_types' => { map { $_ => ( lc($cdr_info{$_}->{'type'}) || 'csv' ); } + 'format_headers' => { map { $_ => ( $cdr_info{$_}->{'header'} || 0 ); } keys %cdr_info }, - 'format_headers' => { map { $_ => ( $cdr_info{$_}->{'header'} || 0 ); } + 'format_sep_chars' => { map { $_ => $cdr_info{$_}->{'sep_char'}; } keys %cdr_info }, - 'format_sep_chars' => { map { $_ => $cdr_info{$_}->{'sep_char'}; } - keys %cdr_info - }, + 'format_fixedlength_formats' => + { map { $_ => $cdr_info{$_}->{'fixedlength_format'}; } + keys %cdr_info + }, +); + +sub _import_options { + \%import_options; +} - 'format_fixedlength_formats' => - { map { $_ => $cdr_info{$_}->{'fixedlength_format'}; } - keys %cdr_info - }, - }; +sub batch_import { + my $opt = shift; + + my $iopt = _import_options; + $opt->{$_} = $iopt->{$_} foreach keys %$iopt; + + FS::Record::batch_import( $opt ); + +} + +=item process_batch_import + +=cut + +sub process_batch_import { + my $job = shift; + + my $opt = _import_options; + $opt->{'params'} = [ 'format', 'cdrbatch' ]; FS::Record::process_batch_import( $job, $opt, @_ );