[BACK]Return to rt_invoices.pl CVS log [TXT][DIR] Up to [local] / RT / Invoicing

Diff for /RT/Invoicing/rt_invoices.pl between version 1.26 and 1.27

version 1.26, 2011/04/19 04:19:27 version 1.27, 2011/04/19 04:21:06
Line 487 
Line 487 
         }          }
   
         my $invoice = $cust->{invoice};          my $invoice = $cust->{invoice};
         next          if ($invoice->{start} && $invoice->{start} > $fee->{date}) {
             if $invoice->{start}              warn "Ticket " . $ticket->id
                 && $invoice->{start} > $fee->{date};                  . " has old uninvoiced Transaction " .  $txn->id . "\n";
               next;
           }
         next if $invoice->{end} < $fee->{date};          next if $invoice->{end} < $fee->{date};
   
         push @{ $project{fees} },         $fee;          push @{ $project{fees} },         $fee;

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>