allow separate address standardization of billing and service addresses, #38646
[freeside.git] / httemplate / elements / standardize_locations.js
1 function status_message(text, caption) {
2   text = '<P STYLE="position:absolute; top:50%; margin-top:-1em; width:100%; text-align:center"><B><FONT SIZE="+1">' + text + '</FONT></B></P>';
3   caption = caption || 'Please wait...';
4   overlib(text, WIDTH, 444, HEIGHT, 168, CAPTION, caption, STICKY, AUTOSTATUSCAP, CLOSECLICK, MIDX, 0, MIDY, 0);
5 }
6
7 function form_address_info() {
8   var cf = document.<% $formname %>;
9
10   var returnobj = { billship: <% $billship %> };
11 % if ( $billship ) {
12   returnobj['same'] = cf.elements['same'].checked;
13 % }
14 % for my $pre (@prefixes) {
15 %   # normal case
16 %   for my $field (qw(address1 address2 state zip country), ($conf->exists('cust_main-no_city_in_address') ? () : 'city')) {
17     returnobj['<% $pre %><% $field %>'] = cf.elements['<% $pre %><% $field %>'].value;
18 %   } #for $field
19 %   if ( $withcensus ) {
20     returnobj['<% $pre %>censustract'] = cf.elements['<% $pre %>enter_censustract'].value;
21 %   }
22 % } #foreach $pre
23
24   return returnobj;
25 }
26
27 function standardize_locations() {
28
29   var cf = document.<% $formname %>;
30   var address_info = form_address_info();
31
32   var changed = false; // have any of the address fields been changed?
33
34 // clear coord_auto fields if the user has changed the coordinates
35 % for my $pre (@prefixes) {
36 %   for my $field ($pre.'latitude', $pre.'longitude') {
37
38   if ( cf.elements['<% $field %>'].value != cf.elements['old_<% $field %>'].value ) {
39     cf.elements['<% $pre %>coord_auto'].value = '';
40   }
41
42 %   } #foreach $field
43   // but if the coordinates have been set to null, turn coord_auto on 
44   // and standardize
45   if ( cf.elements['<% $pre %>latitude'].value == '' &&
46        cf.elements['<% $pre %>longitude'].value == '' ) {
47     cf.elements['<% $pre %>coord_auto'].value = 'Y';
48     changed = true;
49   }
50   // standardize if the old address wasn't clean
51   if ( cf.elements['<% $pre %>addr_clean'].value == '' ) {
52     changed = true;
53   }
54 % } #foreach $pre
55
56   // or if it was clean but has been changed
57   for (var key in address_info) {
58     var old_el = cf.elements['old_'+key];
59     if ( old_el && address_info[key] != old_el.value ) {
60       changed = true;
61       break;
62     }
63   }
64
65 % # If address hasn't been changed, auto-confirm the existing value of 
66 % # censustract so that we don't ask the user to confirm it again.
67
68   if ( !changed && <% $withcensus %> ) {
69 %   if ( $billship ) {
70     if ( address_info['same'] ) {
71       cf.elements['bill_censustract'].value =
72         address_info['bill_censustract'];
73     } else {
74       cf.elements['ship_censustract'].value =
75         address_info['ship_censustract'];
76     }
77 %   } else {
78       cf.elements['censustract'].value =
79         address_info['censustract'];
80 %   }
81   }
82
83 % if ( $conf->config('address_standardize_method') ) {
84   if ( changed ) {
85     status_message('Verifying address...');
86     address_standardize(JSON.stringify(address_info), confirm_standardize);
87   }
88   else {
89 %   foreach my $pre (@prefixes) {
90     cf.elements['<% $pre %>addr_clean'].value = 'Y';
91 %   }
92     post_standardization();
93   }
94
95 % } else {
96
97   post_standardization();
98
99 % } # if address_standardize_method
100 }
101
102 var returned;
103
104 function confirm_standardize(arg) {
105   // contains 'old', which was what we sent, and 'new', which is what came
106   // back, including any errors
107   returned = JSON.parse(arg);
108
109   if ( <% $conf->exists('cust_main-auto_standardize_address') || 0 %> ) {
110
111     replace_address(); // with the contents of returned['new']
112   
113   } else if ( returned['all_same'] ) {
114
115     // then all entered address fields are correct
116     // but we still need to set the lat/long fields and addr_clean
117     status_message('Verified');
118     replace_address();
119
120   } else {
121
122     var querystring = encodeURIComponent( JSON.stringify(returned) );
123     // confirmation popup: knows to call replace_address(), 
124     // post_standardization(), or submit_abort() depending on the 
125     // user's choice.
126     OLpostAJAX(
127         '<%$p%>/misc/confirm-address_standardize.html', 
128         'q='+querystring,
129         function() {
130           overlib( OLresponseAJAX, CAPTION, 'Address standardization', STICKY, 
131             AUTOSTATUSCAP, CLOSETEXT, '', MIDX, 0, MIDY, 0, DRAGGABLE, WIDTH, 
132             650, HEIGHT, 368, BGCOLOR, '#333399', CGCOLOR, '#333399', 
133             TEXTSIZE, 3 );
134         }, 0);
135
136   }
137 }
138
139 function replace_address() {
140
141   var newaddr = returned['new'];
142
143   var cf = document.<% $formname %>;
144   var crf = document.forms['confirm_replace_form'];
145 %  foreach my $pre (@prefixes) {
146   var clean = newaddr['<% $pre %>addr_clean'] == 'Y';
147   var replace = true; // auto_standardize_address won't load the form, so just do it
148   if ( crf && crf['<% $pre %>replace'] ) {
149     replace = crf['<% $pre %>replace'].value == 'Y';
150   }
151   var error = newaddr['<% $pre %>error'];
152   if ( clean && replace ) {
153 %   foreach my $field (qw(address1 address2 state zip addr_clean ),($conf->exists('cust_main-no_city_in_address') ? () : 'city')) {
154     cf.elements['<% $pre %><% $field %>'].value = newaddr['<% $pre %><% $field %>'];
155 %   } #foreach $field
156
157     if ( cf.elements['<% $pre %>coord_auto'].value ) {
158       cf.elements['<% $pre %>latitude'].value  = newaddr['<% $pre %>latitude'];
159       cf.elements['<% $pre %>longitude'].value = newaddr['<% $pre %>longitude'];
160     }
161 %   if ( $withcensus ) {
162     var census_replace = true;
163     if ( crf && crf['census_replace'] ) {
164       census_replace = crf['census_replace'].value == 'Y';
165     }
166
167     if ( clean && census_replace && newaddr['<% $pre %>censustract'] ) {
168       cf.elements['<% $pre %>censustract'].value = newaddr['<% $pre %>censustract'];
169     }
170 %   } #if $withcensus
171   } // if clean
172 % } #foreach $pre
173
174   post_standardization();
175
176 }
177
178 function confirm_manual_address() {
179 %# not much to do in this case, just confirm the censustract
180 % if ( $withcensus ) {
181   var cf = document.<% $formname %>;
182 %   foreach my $pre (@prefixes) {
183   cf.elements['<% $pre %>censustract'].value =
184     cf.elements['<% $pre %>enter_censustract'].value;
185 %   }
186 % } # $withcensus
187   post_standardization();
188 }
189
190 function post_standardization() {
191
192 % if ( $need_tax_location ) {
193
194   var cf = document.<% $formname %>;
195
196   var prefix = '<% $taxpre %>';
197   // fix edge case with cust_main
198   if ( cf.elements['same']
199     && cf.elements['same'].checked
200     && prefix == 'ship_' ) {
201
202     prefix = 'bill_';
203   }
204
205   if ( new String(cf.elements[prefix + 'zip'].value).length < 10 )
206   {
207
208     var country_el = cf.elements[prefix + 'country'];
209     var country = country_el.options[ country_el.selectedIndex ].value;
210     var geocode = cf.elements[prefix + 'geocode'].value;
211
212     if ( country == 'CA' || country == 'US' ) {
213
214       var state_el = cf.elements[prefix + 'state'];
215       var state = state_el.options[ state_el.selectedIndex ].value;
216
217       var url = "<% $p %>/misc/choose_tax_location.html?" +
218                   "city="     + cf.elements[prefix + 'city'].value +
219                   ";state="    + state + 
220                   ";zip="      + cf.elements[prefix + 'zip'].value +
221                   ";country="  + country +
222                   ";geocode="  + geocode +
223                   ";formname=" + '<% $formname %>' +
224                   ";";
225
226       // popup a chooser
227       OLgetAJAX( url, update_geocode, 300 );
228
229     } else {
230
231       cf.elements[prefix + 'geocode'].value = 'DEFAULT';
232       <% $post_geocode %>;
233
234     }
235
236   } else {
237
238     cf.elements[prefix + 'geocode'].value = '';
239     <% $post_geocode %>;
240
241   }
242
243 % } else {
244
245   <% $post_geocode %>;
246
247 % }
248
249 }
250
251 function update_geocode() {
252
253   //yay closures
254   set_geocode = function (what) {
255
256     var cf = document.<% $formname %>;
257     var prefix = '<% $taxpre %>';
258     if ( cf.elements['same']
259       && cf.elements['same'].checked
260       && prefix == 'ship_' ) {
261       prefix = 'bill_';
262     }
263
264 %# this used to set the city/state/zip to the selected value; I think
265 %# that's wrong.
266     var argsHash = JSON.parse(what.value);
267     cf.elements[prefix + 'geocode'].value  = argsHash['geocode'];
268     <% $post_geocode %>;
269
270   }
271
272   // popup a chooser
273
274   overlib( OLresponseAJAX, CAPTION, 'Select tax location', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', MIDX, 0, MIDY, 0, WIDTH, 576, HEIGHT, 268, BGCOLOR, '#333399', CGCOLOR, '#333399', TEXTSIZE, 3 );
275
276 }
277
278 function setselect(el, value) {
279
280   for ( var s = 0; s < el.options.length; s++ ) {
281      if ( el.options[s].value == value ) {
282        el.selectedIndex = s;
283      }
284   }
285
286 }
287
288 % if ($census_functions) { # do not use this in cust_main
289 function confirm_censustract() {
290 %   if ( FS::Conf->new->exists('cust_main-require_censustract') ) {
291   var form = document.<% $formname %>;
292   if ( form.elements['censustract'].value == '' ) {
293     var address_info = form_address_info();
294     address_info['latitude']  = form.elements['latitude'].value;
295     address_info['longitude'] = form.elements['longitude'].value;
296     OLpostAJAX(
297         '<%$p%>/misc/confirm-censustract.html',
298         'q=' + encodeURIComponent(JSON.stringify(address_info)),
299         function() {
300           if ( OLresponseAJAX ) {
301             overlib( OLresponseAJAX, CAPTION, 'Confirm censustract', STICKY,
302               AUTOSTATUSCAP, CLOSETEXT, '', MIDX, 0, MIDY, 0, DRAGGABLE, WIDTH,
303               576, HEIGHT, 268, BGCOLOR, '#333399', CGCOLOR, '#333399',
304               TEXTSIZE, 3 );
305           } else {
306             // no response
307             <% $post_censustract %>;
308           }
309         },
310         0);
311   } else {
312     <% $post_censustract %>;
313   }
314 %   } else { # skip this step
315   <% $post_censustract %>;
316 %   }
317 }
318
319 function set_censustract(tract, year) {
320   var form = document.<% $formname %>;
321   form.elements['censustract'].value = tract;
322   form.elements['censusyear'].value = year;
323   <% $post_censustract %>;
324 }
325
326 % } # $census_functions
327
328 <%init>
329
330 my %opt = @_;
331 my $conf = new FS::Conf;
332
333 my $withcensus = $opt{'with_census'} ? 1 : 0;
334
335 my @prefixes = '';
336 my $billship = $opt{'billship'} ? 1 : 0; # whether to have bill_ and ship_ prefixes
337 my $taxpre = '';
338 # probably should just geocode both addresses, since either one could
339 # be a package address in the future
340 if ($billship) {
341   @prefixes = qw(bill_ ship_);
342   $taxpre = $conf->exists('tax-ship_address') ? 'ship_' : 'bill_';
343 }
344
345 my $formname =  $opt{form} || 'CustomerForm';
346 my $post_geocode = $opt{callback} || 'post_geocode();';
347 my $post_censustract;
348
349 my $census_functions = $opt{'with_census_functions'} ? 1 : 0;
350 if ( $census_functions ) {
351   $post_censustract = $post_geocode;
352   $post_geocode = 'confirm_censustract()';
353 }
354
355 my $tax_engine = FS::TaxEngine->new;
356 my $need_tax_location = $tax_engine->info->{manual_tax_location} ? 1 : 0;
357
358 </%init>