X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr%2Fsonus.pm;fp=FS%2FFS%2Fcdr%2Fsonus.pm;h=f21923999f4a32e9e0adeeb8c6bd648b2665c416;hb=eb60190cfee653ba20c92ad3d3e49e84de9ca859;hp=0000000000000000000000000000000000000000;hpb=528da7cf5c2c72cc062fc92bfa7ef37eb163f8bd;p=freeside.git diff --git a/FS/FS/cdr/sonus.pm b/FS/FS/cdr/sonus.pm new file mode 100644 index 000000000..f21923999 --- /dev/null +++ b/FS/FS/cdr/sonus.pm @@ -0,0 +1,31 @@ +package FS::cdr::sonus; + +use strict; +use base qw( FS::cdr ); +use vars qw( %info ); +use FS::cdr qw( _cdr_date_parser_maker _cdr_min_parser_maker ); + +%info = ( + 'name' => 'Sonus', + 'weight' => 525, + 'header' => 0, #0 default, set to 1 to ignore the first line, or + # to higher numbers to ignore that number of lines + 'type' => 'csv', #csv (default), fixedlength or xls + 'sep_char' => ',', #for csv, defaults to , + 'import_fields' => [ + 'src', # also customer id + 'dst', + _cdr_date_parser_maker('startdate'), + _cdr_date_parser_maker('enddate'), + _cdr_min_parser_maker, + skip(12), + sub { #rate + my ($cdr, $rate) = @_; + $cdr->upstream_price(sprintf("%.4f", $rate * $cdr->duration / 60)); + } + ], +); + +sub skip { map {''} (1..$_[0]) } + +1;