diff options
-rw-r--r-- | FS/FS/cdr/taqua.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/FS/FS/cdr/taqua.pm b/FS/FS/cdr/taqua.pm index 3e9840074..26c0bda62 100644 --- a/FS/FS/cdr/taqua.pm +++ b/FS/FS/cdr/taqua.pm @@ -94,7 +94,11 @@ use FS::cdr qw(_cdr_date_parser_maker); return; } } - ''; + if ( $cdr->is_tollfree ) { # thankfully this is already available + $cdr->charged_party($cdr->dst); # and this + } else { + $cdr->charged_party($field); + } }, sub { my($cdr, $field) = @_; }, #SubscriberNumber |