[freeside-commits] freeside/FS/FS cust_bill.pm,1.335,1.336

Erik Levinson levinse at wavetail.420.am
Sun Apr 24 08:09:14 PDT 2011


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv13282/FS/FS

Modified Files:
	cust_bill.pm 
Log Message:
modify invoice DID summary date range calculation, RT10886

Index: cust_bill.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_bill.pm,v
retrieving revision 1.335
retrieving revision 1.336
diff -u -w -d -r1.335 -r1.336
--- cust_bill.pm	24 Apr 2011 05:07:19 -0000	1.335
+++ cust_bill.pm	24 Apr 2011 15:09:11 -0000	1.336
@@ -4062,10 +4062,12 @@
 sub _did_summary {
     my $self = shift;
     my $end = $self->_date;
-    my @cust_bill = sort { $a->_date <=> $b->_date }
-        grep { $_->_date < $self->_date }
-          qsearch( 'cust_bill', { 'custnum' => $self->custnum } );
-    my $start = $cust_bill[-1]->_date+1; # since last invoice
+
+    # start at date of previous invoice + 1 second or 0 if no previous invoice
+    my $start = $self->scalar_sql("SELECT max(_date) FROM cust_bill WHERE custnum = ? and invnum != ?",$self->custnum,$self->invnum);
+    $start = 0 if !$start;
+    $start++;
+
     my $cust_main = $self->cust_main;
     my @pkgs = $cust_main->all_pkgs;
     my($num_activated,$num_deactivated,$num_portedin,$num_portedout,$minutes)



More information about the freeside-commits mailing list