summaryrefslogtreecommitdiff
path: root/FS/FS/detail_format/simple.pm
blob: 9622e32bac987f3050f39c0b3afecbd725982ab5 (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::simple;

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

sub name { 'Simple' }

sub header_detail { 'Date,Time,Name,Destination,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->userfield,
    $cdr->dst,
    $self->duration($cdr),
    $self->price($cdr),
  )
}

1;