diff options
author | Mark Wells <mark@freeside.biz> | 2012-03-01 12:34:46 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-03-01 12:34:46 -0800 |
commit | fec48523d3cf056da08813f9b2b7d633b27aaf8d (patch) | |
tree | 900f1bc04c8c4dbd98a89c9d35666cdff6e8b9b3 /httemplate/edit/cust_main/bottomfixup.html | |
parent | 0924aec8b98b4056357bfdd19f45686a3e9008e2 (diff) |
duplicate address checking for new customers, #16582
Diffstat (limited to 'httemplate/edit/cust_main/bottomfixup.html')
-rw-r--r-- | httemplate/edit/cust_main/bottomfixup.html | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/httemplate/edit/cust_main/bottomfixup.html b/httemplate/edit/cust_main/bottomfixup.html index 1b29c671a..60edcc111 100644 --- a/httemplate/edit/cust_main/bottomfixup.html +++ b/httemplate/edit/cust_main/bottomfixup.html @@ -1,19 +1,23 @@ -<% include('/elements/init_overlib.html') %> +<& /elements/init_overlib.html &> -<% include( '/elements/xmlhttp.html', - 'url' => $p.'misc/xmlhttp-cust_main-address_standardize.html', - 'subs' => [ 'address_standardize' ], - #'method' => 'POST', #could get too long? - ) -%> +<& /elements/xmlhttp.html, + url => $p.'misc/xmlhttp-cust_main-address_standardize.html', + subs => [ 'address_standardize' ], + #'method' => 'POST', #could get too long? +&> -<% include( '/elements/xmlhttp.html', - 'url' => $p.'misc/xmlhttp-cust_main-censustract.html', - 'subs' => [ 'censustract' ], - #'method' => 'POST', #could get too long? - ) -%> +<& /elements/xmlhttp.html, + url => $p.'misc/xmlhttp-cust_main-censustract.html', + subs => [ 'censustract' ], + #'method' => 'POST', #could get too long? +&> + +<INPUT TYPE="hidden" NAME="duplicate_of_custnum" VALUE=""> +<& /elements/xmlhttp.html, + url => $p.'misc/xmlhttp-cust_main-duplicates.html', + subs => [ 'duplicates_form' ] +&> <SCRIPT TYPE="text/javascript"> - <% include('bottomfixup.js') %> +<& bottomfixup.js, @_ &> </SCRIPT> |