RT#40601: Remove status column from VSS import [fixed file location on v3]
authorJonathan Prykop <jonathan@freeside.biz>
Tue, 17 May 2016 19:29:45 +0000 (14:29 -0500)
committerJonathan Prykop <jonathan@freeside.biz>
Tue, 17 May 2016 19:29:45 +0000 (14:29 -0500)
FS/FS/cdr/FS/FS/cdr/vvs.pm [deleted file]
FS/FS/cdr/vvs.pm [new file with mode: 0644]

diff --git a/FS/FS/cdr/FS/FS/cdr/vvs.pm b/FS/FS/cdr/FS/FS/cdr/vvs.pm
deleted file mode 100644 (file)
index db7e72a..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-package FS::cdr::vvs;
-
-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'          => 'VVS',
-  '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(2),        # ringtime
-                        # reseller_charge
-       'upstream_price',# customer_charge
-  ],
-);
-
-sub skip { map {''} (1..$_[0]) }
-
-1;
diff --git a/FS/FS/cdr/vvs.pm b/FS/FS/cdr/vvs.pm
new file mode 100644 (file)
index 0000000..db7e72a
--- /dev/null
@@ -0,0 +1,32 @@
+package FS::cdr::vvs;
+
+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'          => 'VVS',
+  '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(2),        # ringtime
+                        # reseller_charge
+       'upstream_price',# customer_charge
+  ],
+);
+
+sub skip { map {''} (1..$_[0]) }
+
+1;