From 79c0fbbfc4cb61fc948b8517bc204b9d7ec01104 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 3 Jun 2004 07:00:01 +0000 Subject: [PATCH] better error message for non-applicable invoice events --- FS/FS/cust_bill.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index d0583b2ef..72852d1f1 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -334,7 +334,7 @@ INVOICE_FROM, if specified, overrides the default email invoice From: address. sub send { my $self = shift; my $template = scalar(@_) ? shift : ''; - return '' if scalar(@_) && $_[0] && $self->cust_main->agentnum ne shift; + return 'N/A' if scalar(@_) && $_[0] && $self->cust_main->agentnum != shift; my $invoice_from = scalar(@_) ? shift : $conf->config('invoice_from'); my @print_text = $self->print_text('', $template); -- 2.11.0