[freeside-commits] freeside/FS/FS cust_bill.pm, 1.299.2.33, 1.299.2.34
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-serv13289/FS/FS
Modified Files:
Tag: FREESIDE_2_1_BRANCH
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.299.2.33
retrieving revision 1.299.2.34
diff -u -w -d -r1.299.2.33 -r1.299.2.34
--- cust_bill.pm 24 Apr 2011 05:07:19 -0000 1.299.2.33
+++ cust_bill.pm 24 Apr 2011 15:09:12 -0000 1.299.2.34
@@ -4024,10 +4024,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