detail format refactor, #15535
[freeside.git] / FS / FS / detail_format / simple.pm
diff --git a/FS/FS/detail_format/simple.pm b/FS/FS/detail_format/simple.pm
new file mode 100644 (file)
index 0000000..cb6b672
--- /dev/null
@@ -0,0 +1,24 @@
+package FS::detail_format::simple;
+
+use strict;
+use parent qw(FS::detail_format);
+use Date::Format qw(time2str);
+
+sub name { 'Simple' }
+
+sub header_detail { 'Date,Time,Name,Destination,Duration,Price' }
+
+sub columns {
+  my $self = shift;
+  my $cdr = shift;
+  (
+    time2str($self->date_format, $cdr->startdate),
+    time2str('%r', $cdr->startdate),
+    $cdr->userfield,
+    $cdr->dst,
+    $self->duration($cdr),
+    $self->price($cdr),
+  )
+}
+
+1;