RT#40601: Remove status column from VSS import [remove old obsolete module]
authorJonathan Prykop <jonathan@freeside.biz>
Tue, 10 May 2016 19:33:20 +0000 (14:33 -0500)
committerJonathan Prykop <jonathan@freeside.biz>
Tue, 10 May 2016 20:00:51 +0000 (15:00 -0500)
FS/FS/cdr/vss.pm [deleted file]

diff --git a/FS/FS/cdr/vss.pm b/FS/FS/cdr/vss.pm
deleted file mode 100644 (file)
index a550303..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-package FS::cdr::vss;
-
-use strict;
-use vars qw( @ISA %info $tmp_mon $tmp_mday $tmp_year );
-use Time::Local;
-use FS::cdr qw(_cdr_date_parser_maker);
-
-@ISA = qw(FS::cdr);
-
-%info = (
-  'name'          => 'VSS',
-  'weight'        => 120,
-  'header'        => 1,
-  'import_fields' => [
-
-        skip(1),        # i_customer
-        'accountcode',  # account_id
-        'src',          # caller
-        'dst',          # called
-        skip(2),        # reason
-                       # call id
-        _cdr_date_parser_maker('startdate'),       # time
-        'billsec',      # duration
-        skip(3),        # ringtime
-                        # status
-                        # resller_charge
-       'upstream_price',# customer_charge
-  ],
-);
-
-sub skip { map {''} (1..$_[0]) }
-
-1;