diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-03 19:07:45 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-03 19:07:45 -0800 |
commit | a68a6b2c40470a95e4330c844d00389b9ac4c9a6 (patch) | |
tree | c92b7d46b5d082cf2597e93c489c01393847e500 /FS | |
parent | 56458cb72e1958cb8d40faf014840277bd58c006 (diff) | |
parent | df0798e9f7d899d0eb74b24d16e6ba4f767313cd (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cdr/cx3.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/FS/FS/cdr/cx3.pm b/FS/FS/cdr/cx3.pm index a1e2e93c4..7f1222e9a 100644 --- a/FS/FS/cdr/cx3.pm +++ b/FS/FS/cdr/cx3.pm @@ -30,8 +30,10 @@ use Date::Parse; skip(1), sub { my ($cdr, $calldate, $param) = @_; - $cdr->set('calldate', $calldate); - }, #date + my $date = str2time($calldate); + $cdr->set('startdate', $date); + + }, #date skip(4), 'accountcode', # AccountCode skip(6), |