From: ivan Date: Thu, 3 Jun 2004 07:00:01 +0000 (+0000) Subject: better error message for non-applicable invoice events X-Git-Tag: BEFORE_FINAL_MASONIZE~1056 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=79c0fbbfc4cb61fc948b8517bc204b9d7ec01104 better error message for non-applicable invoice events --- 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);