diff options
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 1eda82545..394c5d8d5 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -396,6 +396,8 @@ <TD WIDTH="608" COLSPAN="2"><INPUT TYPE="checkbox" NAME="tax" VALUE="Y" <% $cust_main->tax eq "Y" ? 'CHECKED' : '' %>> Tax Exempt</TD> </TR> +% unless ( $conf->exists('emailinvoiceonly') ) { + <TR> <TD WIDTH="608" COLSPAN="2"><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST" <% @@ -421,6 +423,8 @@ </TD> </TR> +% } + <TR> <TD ALIGN="right" WIDTH="200">Email invoice </TD> <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"></TD> |