X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcdr%2Fenswitch.pm;h=ebb2677befbb640d335f995b0207a83f31ea4866;hb=941a3896b4647bfcd4fbf1754ec444f2c511580d;hp=70542b20cd8ce87583ce53380674d8d1076924c0;hpb=14af2debcb12f781a3f952f0bccd5be82ae7f964;p=freeside.git diff --git a/FS/FS/cdr/enswitch.pm b/FS/FS/cdr/enswitch.pm index 70542b20c..ebb2677be 100644 --- a/FS/FS/cdr/enswitch.pm +++ b/FS/FS/cdr/enswitch.pm @@ -18,20 +18,19 @@ use FS::cdr_type; 'enddate', #End skip(4), #End date, End time #Calling customer, Calling type - 'src', #Calling number - 'clid', #Calling name - skip(1), #Called type + 'src', #Calling number + skip(1), #Called type 'dst', #Called number - skip(10), #Destination customer, Destination type + skip(14), #Destination customer, Destination type #Destination number #Destination group ID, Destination group name, - \&in_calling_type, #Inbound calling type, - \&in_calling_num, #Inbound calling number, - '', #Inbound called type, - \&in_called_num, #Inbound called number, - skip(11), + #Inbound calling type, + #Inbound calling number, + #Inbound called type, + #Inbound called number, #Inbound destination type, Inbound destination number, - #Outbound calling type, Outbound calling number, + 'dcontext', #Outbound calling type, + skip(11), #Outbound calling number, #Outbound called type, Outbound called number, #Outbound destination type, Outbound destination number, #Internal calling type, Internal calling number, @@ -40,8 +39,8 @@ use FS::cdr_type; 'duration', #Total seconds skip(1), #Ring seconds 'billsec', #Billable seconds - 'upstream_price', #Cost - skip(1), #Cost including taxes + skip(2), #Cost + #Cost including taxes 'accountcode', #Billing customer skip(3), #Billing customer name, Billing type, Billing reference ], @@ -68,14 +67,4 @@ sub in_calling_type { } -sub in_calling_num { - my ($record, $data) = @_; - $record->src($data) if ( ($record->in_calling_type || '') eq 'external' ); -} - -sub in_called_num { - my ($record, $data) = @_; - $record->dst($data) if ( ($record->in_calling_type || '') eq 'external' ); -} - 1;