From: Jeremy Davis Date: Mon, 12 May 2014 17:40:24 +0000 (-0400) Subject: 29050 Orcon CDR format X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=94f53394be8a214aefda3e2ce3e25b3fcd87fc93 29050 Orcon CDR format --- 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; +