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

use strict;
use base qw(FS::detail_format);

sub name { 'Simple with source' }

sub header_detail { 'Date,Time,Called From,Account,Duration,Price' }

sub columns {
  my $self = shift;
  my $cdr = shift;
  (
    $self->time2str_local($self->date_format, $cdr->startdate),
    $self->time2str_local('%r', $cdr->startdate),
    $cdr->src,
    $cdr->accountcode,
    $self->duration($cdr),
    $self->price($cdr),
  )
}

1;