[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.33 and 1.34

version 1.33, 2011/05/07 03:27:34 version 1.34, 2011/05/07 03:34:17
Line 1 
Line 1 
 #!/usr/bin/perl  #!/usr/bin/perl
 #  $AFresh1: rt_invoices.pl,v 1.32 2011/05/07 01:09:43 andrew Exp $  # $AFresh1: rt_invoices.pl,v 1.33 2011/05/07 02:27:34 andrew Exp $
 ########################################################################  ########################################################################
 # Copyright (c) 2011 Andrew Fresh <andrew@afresh1.com>  # Copyright (c) 2011 Andrew Fresh <andrew@afresh1.com>
 #  #
Line 507 
Line 507 
   
     my $work_time = sprintf "%.03f", $txn->time_taken / 60;      my $work_time = sprintf "%.03f", $txn->time_taken / 60;
     my $work_type = $txn->cf('WorkType');      my $work_type = $txn->cf('WorkType');
   
       if ( $work_type =~ s/\s*Onsite//i ) {
           # XXX Do something special for onsite activities
       }
   
       $work_type =~ s/^\s+|\s+$//g;
       $work_type ||= 'Normal';
   
     my %fee = (      my %fee = (
         id       => $txn->id,          id       => $txn->id,

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

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