disable unique-address check to avoid problems on 3.0, #23425
authorMark Wells <mark@freeside.biz>
Wed, 12 Jun 2013 19:52:08 +0000 (12:52 -0700)
committerMark Wells <mark@freeside.biz>
Wed, 12 Jun 2013 19:52:08 +0000 (12:52 -0700)
httemplate/edit/cust_main/bottomfixup.js

index 0de6d9d..9e18fa0 100644 (file)
@@ -10,8 +10,9 @@ my @fixups = ('copy_payby_fields', 'standardize_locations');
 push @fixups, 'confirm_censustract'
     if $conf->exists('cust_main-require_censustract');
 
-push @fixups, 'check_unique'
-    if $conf->exists('cust_main-check_unique') and !$opt{'custnum'};
+# currently doesn't work; disable to avoid problems
+#push @fixups, 'check_unique'
+#    if $conf->exists('cust_main-check_unique') and !$opt{'custnum'};
 
 push @fixups, 'do_submit'; # always last
 </%init>