[freeside-commits] branch FREESIDE_3_BRANCH updated. 365d3d9a429b4797fd38c5be7f555bfe272509a9
Jeremy Davis
jeremyd at 420.am
Sun Mar 1 17:59:07 PST 2015
The branch, FREESIDE_3_BRANCH has been updated
via 365d3d9a429b4797fd38c5be7f555bfe272509a9 (commit)
from 0b5ea482d5cb6685d3866a8940dc90eb6e8157cf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 365d3d9a429b4797fd38c5be7f555bfe272509a9
Author: Jeremy Davis <jeremyd at freeside.biz>
Date: Sun Mar 1 20:58:52 2015 -0500
Enswitch CDR changes
diff --git a/FS/FS/cdr/enswitch.pm b/FS/FS/cdr/enswitch.pm
index 70542b2..c1966b4 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;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cdr/enswitch.pm | 26 +++++++-------------------
1 file changed, 7 insertions(+), 19 deletions(-)
More information about the freeside-commits
mailing list