Option to ignore old CDRs, RT#81480
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
index 522e4aa..49e43e9 100644 (file)
@@ -674,9 +674,9 @@ sub check_chargable {
       and length($cdr->max_callers)
       and $cdr->max_callers <= $self->option_cacheable('skip_max_callers');
 
-  return "calldate < ". str2time($self->option_cacheable('skip_old'))
+  return "calldate < ". $self->option_cacheable('skip_old')
     if $self->option_cacheable('skip_old')
-    && $self->calldate_unix < str2time($self->option_cacheable('skip_old')); 
+    && $cdr->calldate_unix < str2time($self->option_cacheable('skip_old')); 
 
   #all right then, rate it
   '';