From 94f53394be8a214aefda3e2ce3e25b3fcd87fc93 Mon Sep 17 00:00:00 2001 From: Jeremy Davis Date: Mon, 12 May 2014 13:40:24 -0400 Subject: [PATCH] 29050 Orcon CDR format --- FS/FS/cdr/orcon.pm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 FS/FS/cdr/orcon.pm diff --git a/FS/FS/cdr/orcon.pm b/FS/FS/cdr/orcon.pm new file mode 100644 index 000000000..4d15cfdf3 --- /dev/null +++ b/FS/FS/cdr/orcon.pm @@ -0,0 +1,35 @@ +package FS::cdr::orcon; + +use strict; +use vars qw( @ISA %info); +use FS::cdr; + +@ISA = qw(FS::cdr); + +%info = ( + 'name' => 'Orcon', + 'weight' => 120, + 'header' => 1, + 'import_fields' => [ + + skip(2), #id + #billing period + 'accountcode', #account number + skip(2), #username + #service id + 'calldate', #date + skip(1), #tariff region + 'src', #originating number + 'dst', #terminating number + 'duration', #duration actual + 'billsec', #duration billed + skip(1), #discount + 'upstream_price',#charge + + ], +); + +sub skip { map {''} (1..$_[0]) } + +1; + -- 2.11.0