Fix changes on
[freeside.git] / FS / FS / cdr / enswitch.pm
index c1966b4..1cdd802 100644 (file)
@@ -12,16 +12,21 @@ use FS::cdr_type;
   'header'        => 2,
   'type'          => 'csv',
   'import_fields' => [
-    'disposition',  #Status
+    'dcontext',     #Status
     'startdate',    #Start, already a unix timestamp
     skip(2),        #Start date, Start time
     'enddate',      #End
-    skip(6),        #End date, End time
+    skip(4),        #End date, End time
                     #Calling customer, Calling type
     'src',          #Calling number     
     skip(1),        #Called type
-    'dst',          #Called number
-    skip(26),       #Destination customer, Destination type
+
+    sub { my ($cdr, $dst) = @_; 
+        $dst =~ s/\*//g;
+       $cdr->set('dst', $dst);
+    },              #Called number
+
+    skip(14),       #Destination customer, Destination type
                     #Destination number
                     #Destination group ID, Destination group name,
                    #Inbound calling type,
@@ -29,7 +34,8 @@ use FS::cdr_type;
                     #Inbound called type,
                    #Inbound called number,
                     #Inbound destination type, Inbound destination number,
-                    #Outbound calling type, Outbound calling number,
+    'disposition',  #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,
@@ -38,8 +44,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
   ],