X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fdetail_format.pm;h=f70acc663aca9772c67bdf60cb068bde573f8601;hb=984fff08c579ff72f6eb7f658d9373079eafb16a;hp=af97f36b4524c3fe6e90160a5e7a6d8332629bc2;hpb=440a4fe4f826a59a660d744889b24eb751da675b;p=freeside.git diff --git a/FS/FS/detail_format.pm b/FS/FS/detail_format.pm index af97f36b4..f70acc663 100644 --- a/FS/FS/detail_format.pm +++ b/FS/FS/detail_format.pm @@ -171,11 +171,12 @@ sub single_detail { die "$me error combining ".$self->csv->error_input."\n" if !$status; - my $rated_price = $cdr->rated_price; - $rated_price = 0 if $cdr->freesidestatus eq 'no-charge'; + my $object = $self->{inbound} ? $cdr->cdr_termination(1) : $cdr; + my $price = $object->rated_price if $object; + $price = 0 if $cdr->freesidestatus eq 'no-charge'; FS::cust_bill_pkg_detail->new( { - 'amount' => $rated_price, + 'amount' => $price, 'classnum' => $cdr->rated_classnum, 'duration' => $cdr->rated_seconds, 'regionname' => $cdr->rated_regionname,