summaryrefslogtreecommitdiff
path: root/FS/FS/cdr/openser.pm
blob: 87fb822511c4f531118d25902e9027fd42846d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package FS::cdr::openser;

use strict;
use vars qw(@ISA %info);
use FS::cdr qw(_cdr_date_parser_maker);

@ISA = qw(FS::cdr);

%info = (
  'name'          => 'OpenSER',
  'weight'        => 15,
  'header'        => 1,
  'import_fields' => [
    _cdr_date_parser_maker('startdate'),
    _cdr_date_parser_maker('enddate'),
    'src',
    'dst',
    'duration',
    'channel',
    'dstchannel',
  ],
);

1;