diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-03-25 23:17:38 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-03-25 23:17:38 -0700 |
commit | 06e353b743e7be88afa8fce50ea10f27ebb7adef (patch) | |
tree | f8bd2217de55b2f2aca9c01794aafbad302307b8 /httemplate/edit | |
parent | 56230080801b578c595f5807c7e878452b6bc12d (diff) | |
parent | 8e73bf5782dc6fe2b299ba759ad15780a8946cc4 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 6ba73ad68..5a66f0a60 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -521,7 +521,13 @@ <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) ? $r : '' %>Email address(es) </TD> - <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"></TD> + <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"> + <INPUT TYPE="checkbox" NAME="message_noemail" VALUE="Y" <% + ( $cust_main->message_noemail eq 'Y' ) + ? 'CHECKED' + : '' + %>> <% emt('Do not send notices') %> + </TD> </TR> % } |