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

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

sub name { 'Basic with upstream destination name' }

sub header_detail { 'Date/Time,Called Number,Destination,Min/Sec,Price' }

sub columns {
  my $self = shift;
  my $cdr = shift;
  (
    $self->time2str_local('%d %b - %I:%M %p', $cdr->startdate),
    $cdr->dst,
    $cdr->upstream_dst_regionname,
    $self->duration($cdr),
    $self->price($cdr),
  )
}

1;