diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-07-26 18:18:08 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-26 18:18:08 -0700 |
| commit | ac789321ade0f8fb86f410afcc16f2f2c8b8e22d (patch) | |
| tree | 715a493c17dc2d7d1373c1aecc6013a268aeb9ac | |
| parent | 26aff5a2e27a887ff29571370712bff9c7921962 (diff) | |
when Email invoices is set to no, don't send payment receipt Statement invoice either, RT#17676
| -rw-r--r-- | FS/FS/cust_pay.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index 09788c563..444f68ada 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -656,7 +656,7 @@ sub send_receipt { } - } else { #not manual + } elsif ( ! $cust_main->invoice_noemail ) { #not manual my $queue = new FS::queue { 'paynum' => $self->paynum, |
