diff options
author | ivan <ivan> | 2011-04-11 01:24:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-11 01:24:50 +0000 |
commit | 4dfd652efeda65ee26be10d7941a25a4317f6d57 (patch) | |
tree | d5a014fb4b2066fbc333c64e5df92d8d664c7b0c /httemplate/elements | |
parent | 0b7d38278c191627a0e81eba16e894265fe9d300 (diff) |
fix misfire of USPS address correction on non-new locations, RT#12183
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-select-cust_location.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/elements/tr-select-cust_location.html b/httemplate/elements/tr-select-cust_location.html index 6de034669..49478f26a 100644 --- a/httemplate/elements/tr-select-cust_location.html +++ b/httemplate/elements/tr-select-cust_location.html @@ -145,7 +145,10 @@ Example: <TR> <<%$th%> ALIGN="right"><% $opt{'label'} || 'Service location' %></<%$th%>> <TD COLSPAN=7> - <SELECT NAME="locationnum" onChange="locationnum_changed(this);"> + <SELECT NAME = "locationnum" + ID = "locationnum" + onChange = "locationnum_changed(this);" + > <OPTION VALUE=""><% $opt{'empty_label'} || '(default service address)' |h %> % my @locations = $cust_main ? $cust_main->cust_location : (); % push @locations, $cust_location |