diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2015-04-27 13:59:38 -0400 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2015-04-27 13:59:38 -0400 |
commit | 82a06a689dbdffc678151a7256310867cd0b0018 (patch) | |
tree | 1827072f6b07a4e6ac982e2b31ab574686dec567 | |
parent | e2f23d0d3110ccff9dadf523d150a0d747130b43 (diff) |
Ticket 33385 Changes to enswitch cdr import modules
-rw-r--r-- | FS/FS/cdr/enswitch.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/FS/FS/cdr/enswitch.pm b/FS/FS/cdr/enswitch.pm index 1ef884c3f..9d222dffc 100644 --- a/FS/FS/cdr/enswitch.pm +++ b/FS/FS/cdr/enswitch.pm @@ -20,7 +20,13 @@ use FS::cdr_type; #Calling customer, Calling type 'src', #Calling number skip(1), #Called type - 'dst', #Called number + + 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, |