X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr%2Fenswitch.pm;h=c1966b4047195afa4472f7a34bb029482fdef459;hb=b8d0732eb99b96fa0cc932e74ede5799d6ff71bc;hp=64518af6d354c007e2301f7de9c41fcea65994bd;hpb=b49c1bd5510a5f10b05bffacc6cc8b6a1b2153e8;p=freeside.git diff --git a/FS/FS/cdr/enswitch.pm b/FS/FS/cdr/enswitch.pm index 64518af6d..c1966b404 100644 --- a/FS/FS/cdr/enswitch.pm +++ b/FS/FS/cdr/enswitch.pm @@ -1,11 +1,10 @@ package FS::cdr::enswitch; +use base qw( FS::cdr ); use strict; -use vars qw( @ISA %info $tmp_mon $tmp_mday $tmp_year ); -use Time::Local; -use FS::cdr qw(_cdr_min_parser_maker); - -@ISA = qw(FS::cdr); +use vars qw( %info $tmp_mon $tmp_mday $tmp_year ); +use FS::Record qw( qsearchs ); +use FS::cdr_type; %info = ( 'name' => 'Enswitch', @@ -17,17 +16,18 @@ use FS::cdr qw(_cdr_min_parser_maker); 'startdate', #Start, already a unix timestamp skip(2), #Start date, Start time 'enddate', #End - skip(4), #End date, End time + skip(6), #End date, End time #Calling customer, Calling type - 'src', #Calling number - 'clid', #Calling name + 'src', #Calling number skip(1), #Called type 'dst', #Called number - skip(23), #Destination customer, Destination type + skip(26), #Destination customer, Destination type #Destination number #Destination group ID, Destination group name, - #Inbound calling type, Inbound calling number, - #Inbound called type, Inbound called number, + #Inbound calling type, + #Inbound calling number, + #Inbound called type, + #Inbound called number, #Inbound destination type, Inbound destination number, #Outbound calling type, Outbound calling number, #Outbound called type, Outbound called number, @@ -39,6 +39,7 @@ use FS::cdr qw(_cdr_min_parser_maker); skip(1), #Ring seconds 'billsec', #Billable seconds 'upstream_price', #Cost + skip(1), #Cost including taxes 'accountcode', #Billing customer skip(3), #Billing customer name, Billing type, Billing reference ], @@ -46,4 +47,23 @@ use FS::cdr qw(_cdr_min_parser_maker); sub skip { map {''} (1..$_[0]) } +#create CDR types with names matching in_calling_type valuesj - 'none' +# (without the quotes) for blank +our %cdr_type = (); +sub in_calling_type { + my ($record, $data) = @_; + + $data ||= 'none'; + + my $cdr_type = exists($cdr_type{$data}) + ? $cdr_type{$data} + : qsearchs('cdr_type', { 'cdrtypename' => $data } ); + + $cdr_type{$data} = $cdr_type; + + $record->set('in_calling_type', $data); #for below + $record->set('cdrtypenum', $cdr_type->cdrtypenum) if $cdr_type; + +} + 1;