summaryrefslogtreecommitdiff
path: root/FS/FS/cust_pay.pm
diff options
context:
space:
mode:
authormark <mark>2010-06-11 21:17:48 +0000
committermark <mark>2010-06-11 21:17:48 +0000
commit4e2b0b934d568e9b512bc45bf684bf5f23ae63b6 (patch)
tree1ce9d01a020c12019f3584fa663eb8f8e7b10efd /FS/FS/cust_pay.pm
parent8a89d5b9f6731673c53cb3edbf20d76c2c1c8c25 (diff)
RT#7266: continue fixing aging reports
Diffstat (limited to 'FS/FS/cust_pay.pm')
-rw-r--r--FS/FS/cust_pay.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm
index ff8226c8d..261bb4fd0 100644
--- a/FS/FS/cust_pay.pm
+++ b/FS/FS/cust_pay.pm
@@ -659,7 +659,7 @@ Returns an SQL fragment to retreive the unapplied amount.
=cut
sub unapplied_sql {
- my ($class, $start, $end) = shift;
+ my ($class, $start, $end) = @_;
my $bill_start = $start ? "AND cust_bill_pay._date <= $start" : '';
my $bill_end = $end ? "AND cust_bill_pay._date > $end" : '';
my $refund_start = $start ? "AND cust_pay_refund._date <= $start" : '';