This commit was generated by cvs2svn to compensate for changes in r11022,
[freeside.git] / FS / FS / cdr / vitelity.pm
1 package FS::cdr::vitelity;
2
3 use strict;
4 use vars qw( @ISA %info );
5 use FS::cdr qw(_cdr_date_parser_maker);
6
7 @ISA = qw(FS::cdr);
8
9 %info = (
10   'name'          => 'Vitelity',
11   'weight'        => 100,
12   'header'        => 1,
13   'import_fields' => [
14     # Cheers to Vitelity for their concise, readable CDR format.
15     _cdr_date_parser_maker('startdate'),
16     'src',
17     'dst',
18     'duration',
19     'clid',
20     'disposition',
21     'upstream_price',
22     ],
23 );
24
25 1;