diff options
Diffstat (limited to 'httemplate')
| -rwxr-xr-x | httemplate/edit/cust_main.cgi | 2 | ||||
| -rw-r--r-- | httemplate/edit/cust_main/billing.html | 6 | 
2 files changed, 3 insertions, 5 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index daddd8ece..748cdde5f 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -62,6 +62,8 @@  %  $password = '';  %  $popnum = 0;  %  @invoicing_list = (); +%  push @invoicing_list, 'POST' +%    unless $conf->exists('disablepostalinvoicedefault');  %}  %$cgi->delete_all();  % diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index ae5630739..77db7b6c6 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -409,11 +409,7 @@      <TR>        <TD WIDTH="608" COLSPAN="2"><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST" <% -        ( (    ! @invoicing_list -            && ! $conf->exists('disablepostalinvoicedefault') -            && ! $cust_main->custnum -          ) -          || grep { $_ eq 'POST' } @invoicing_list                     ) +        ( grep { $_ eq 'POST' } @invoicing_list )            ? 'CHECKED'            : ''  | 
