summaryrefslogtreecommitdiff
path: root/FS/FS/cdr/nt.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/cdr/nt.pm')
-rw-r--r--FS/FS/cdr/nt.pm23
1 files changed, 23 insertions, 0 deletions
diff --git a/FS/FS/cdr/nt.pm b/FS/FS/cdr/nt.pm
new file mode 100644
index 000000000..784a06a91
--- /dev/null
+++ b/FS/FS/cdr/nt.pm
@@ -0,0 +1,23 @@
+package FS::cdr::nt;
+
+use vars qw(@ISA %info);
+use FS::cdr qw(_cdr_date_parser_maker);
+
+@ISA = qw(FS::cdr);
+
+%info = (
+ 'name' => 'NT', #XXX name???
+ 'weight' => 200,
+ 'header' => 1,
+ 'import_fields' => [
+ 'userfield', #CallZoneData ???userfield
+ 'channel', #OrigGw
+ 'dstchannel', #TermGw
+ 'duration', #Duration
+ 'dst', #CallDTMF
+ 'src', #Ani
+ 'startdate', #DateTimeInt
+ ],
+);
+
+1;