summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Davis <jeremyd@freeside.biz>2015-03-01 20:57:49 -0500
committerJeremy Davis <jeremyd@freeside.biz>2015-03-01 20:57:49 -0500
commitb8d0732eb99b96fa0cc932e74ede5799d6ff71bc (patch)
tree57267b612cde406f4eb4473ec1faddb18d670d25
parentf054f4db2a70c60b3adbaaa1672eefcddd62d96e (diff)
Enswitch CDR changes
-rw-r--r--FS/FS/cdr/enswitch.pm26
1 files changed, 7 insertions, 19 deletions
diff --git a/FS/FS/cdr/enswitch.pm b/FS/FS/cdr/enswitch.pm
index 70542b20c..c1966b404 100644
--- a/FS/FS/cdr/enswitch.pm
+++ b/FS/FS/cdr/enswitch.pm
@@ -16,20 +16,18 @@ use FS::cdr_type;
'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(10), #Destination customer, Destination type
+ skip(26), #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,
#Outbound called type, Outbound called number,
@@ -68,14 +66,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;