diff options
author | Mark Wells <mark@freeside.biz> | 2014-03-14 16:59:18 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-03-14 16:59:18 -0700 |
commit | cdc349ac42247cd97cd475918b75a8e8e71ec0c2 (patch) | |
tree | e8a3efeb88081c80661a6865f23ebd272fba5509 /httemplate/edit/cust_main/top_misc.html | |
parent | b2f85194e8e090dd6fb05acbe4575dd9440be134 (diff) |
add spouse name to customer records, #24919
Diffstat (limited to 'httemplate/edit/cust_main/top_misc.html')
-rw-r--r-- | httemplate/edit/cust_main/top_misc.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/edit/cust_main/top_misc.html b/httemplate/edit/cust_main/top_misc.html index e25506f52..f3fde53fa 100644 --- a/httemplate/edit/cust_main/top_misc.html +++ b/httemplate/edit/cust_main/top_misc.html @@ -27,11 +27,13 @@ if ( what.checked == (what.value == 'Commercial' ) ) { document.getElementById('company_row').style.display = ''; document.getElementById('contacts_div').style.display = ''; + document.getElementById('spouse_row').style.display = 'none'; } else { if ( document.getElementById('company').value.length == 0 ) { document.getElementById('company_row').style.display = 'none'; } document.getElementById('contacts_div').style.display = 'none'; + document.getElementById('spouse_row').style.display = ''; } } |