From 05a8005cb5435fbdb3552af855a77934b58eac91 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Fri, 15 Mar 2013 15:58:21 -0700 Subject: [PATCH] fix editing of service address fields, from #21327 --- httemplate/edit/cust_main.cgi | 2 +- httemplate/edit/cust_main/top_misc.html | 13 +++++++++++-- httemplate/elements/location.html | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index 49406a0b4..5671e7a2b 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -106,7 +106,7 @@ function samechanged(what) { t1.style.display = ''; } } -samechanged(document.getElementById('same')); +//samechanged(document.getElementById('same'));
diff --git a/httemplate/edit/cust_main/top_misc.html b/httemplate/edit/cust_main/top_misc.html index f2f584fc5..b7e86ba78 100644 --- a/httemplate/edit/cust_main/top_misc.html +++ b/httemplate/edit/cust_main/top_misc.html @@ -40,6 +40,10 @@ var agentnum = what.value; var f = what.form; if ( ship_locked_agents[agentnum] ) { +% # For this agent, the service location (except address2) +% # should be locked to the agent's location. +% # Set the ship_ fields to those values (just for display) and +% # then disable them. for(var x in ship_locked_agents[agentnum]) { f['ship_'+x].value = ship_locked_agents[agentnum][x]; f['ship_'+x].disabled = true; @@ -47,12 +51,17 @@ f['same'].checked = false; f['same'].disabled = true; } else { +% # Unlock the ship_ location fields. If they were previously +% # disabled, then they contain some agent's address, which is +% # no longer meaningful. So set them back to the customer's +% # current location. for(var i=0; i % } %# Placeholders -- 2.11.0