From 35571f30f46e8743b54fcb887fbc4fdeca2d7a33 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 30 May 2008 03:55:52 +0000 Subject: 1.7 sucks. add a "balance over" option to the 1.7 style agent-specific invoice send event --- FS/FS/cust_bill.pm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'FS') diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 3f5a4ea57..8c17efa19 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -750,6 +750,9 @@ single agent) or an arrayref of agentnums. INVOICE_FROM, if specified, overrides the default email invoice From: address. +AMOUNT, if specified, only sends the invoice if the total amount owed on this +invoice and all older invoices is greater than the specified amount. + =cut sub queueable_send { @@ -780,6 +783,11 @@ sub send { ? shift : ( $self->_agent_invoice_from || $conf->config('invoice_from') ); + my $balance_over = ( scalar(@_) && $_[0] !~ /^\s*$/ ) ? shift : 0; + + return '' + unless $self->cust_main->total_owed_date($self->_date) > $balance_over; + my @invoicing_list = $self->cust_main->invoicing_list; $self->email($template, $invoice_from) -- cgit v1.2.1