summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main/top_misc.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-03-14 16:59:38 -0700
committerMark Wells <mark@freeside.biz>2014-03-14 16:59:38 -0700
commit7bfd0175b05d52b648e283fca4343aef79e851d7 (patch)
tree0e936d2b7ffec2d39c98fa0a416c557c89d6f883 /httemplate/edit/cust_main/top_misc.html
parent8e3646075dfae1246f287ba3384eb34a83c67b08 (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.html2
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 = '';
}
}