fix 'Can't call method "parse" on an undefined value' error from CDR format refactor
[freeside.git] / FS / FS / cdr / nextone.pm
1 package FS::cdr::nextone;
2
3 use strict;
4 use vars qw(@ISA %info);
5 use FS::cdr qw(_cdr_date_parser_maker);
6
7 @ISA = qw(FS::cdr);
8
9 %info = (
10   'name'          => 'Nextone',
11   'weight'        => 200,
12   'header'        => 1,
13   'import_fields' => [
14     'userfield',  #CallZoneData ???userfield
15     'channel',    #OrigGw
16     'dstchannel', #TermGw
17     'duration',   #Duration
18     'dst',        #CallDTMF
19     'src',        #Ani
20     'startdate',  #DateTimeInt
21   ],
22 );
23
24 1;