c2857377a5aef662abd699373d2f2acf95e6a077
[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 ( $conf->exists('enable_taxproducts') ) {
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                   "?data_vendor=cch-zip" + 
219                   ";city="     + cf.elements[prefix + 'city'].value +
220                   ";state="    + state + 
221                   ";zip="      + cf.elements[prefix + 'zip'].value +
222                   ";country="  + country +
223                   ";geocode="  + geocode +
224                   ";formname=" + '<% $formname %>' +
225                   ";";
226
227       // popup a chooser
228       OLgetAJAX( url, update_geocode, 300 );
229
230     } else {
231
232       cf.elements[prefix + 'geocode'].value = 'DEFAULT';
233       <% $post_geocode %>;
234
235     }
236
237   } else {
238
239     cf.elements[prefix + 'geocode'].value = '';
240     <% $post_geocode %>;
241
242   }
243
244 % } else {
245
246   <% $post_geocode %>;
247
248 % }
249
250 }
251
252 function update_geocode() {
253
254   //yay closures
255   set_geocode = function (what) {
256
257     var cf = document.<% $formname %>;
258     var prefix = '<% $taxpre %>';
259     if ( cf.elements['same']
260       && cf.elements['same'].checked
261       && prefix == 'ship_' ) {
262       prefix = 'bill_';
263     }
264
265     //alert(what.options[what.selectedIndex].value);
266     var argsHash = eval('(' + what.options[what.selectedIndex].value + ')');
267     cf.elements[prefix + 'city'].value     = argsHash['city'];
268     setselect(cf.elements[prefix + 'state'], argsHash['state']);
269     cf.elements[prefix + 'zip'].value      = argsHash['zip'];
270     cf.elements[prefix + 'geocode'].value  = argsHash['geocode'];
271     <% $post_geocode %>;
272
273   }
274
275   // popup a chooser
276
277   overlib( OLresponseAJAX, CAPTION, 'Select tax location', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', MIDX, 0, MIDY, 0, WIDTH, 576, HEIGHT, 268, BGCOLOR, '#333399', CGCOLOR, '#333399', TEXTSIZE, 3 );
278
279 }
280
281 function setselect(el, value) {
282
283   for ( var s = 0; s < el.options.length; s++ ) {
284      if ( el.options[s].value == value ) {
285        el.selectedIndex = s;
286      }
287   }
288
289 }
290
291 % if ($census_functions) { # do not use this in cust_main
292 function confirm_censustract() {
293 %   if ( FS::Conf->new->exists('cust_main-require_censustract') ) {
294   var form = document.<% $formname %>;
295   if ( form.elements['censustract'].value == '' ) {
296     var address_info = form_address_info();
297     address_info['latitude']  = form.elements['latitude'].value;
298     address_info['longitude'] = form.elements['longitude'].value;
299     OLpostAJAX(
300         '<%$p%>/misc/confirm-censustract.html',
301         'q=' + encodeURIComponent(JSON.stringify(address_info)),
302         function() {
303           if ( OLresponseAJAX ) {
304             overlib( OLresponseAJAX, CAPTION, 'Confirm censustract', STICKY,
305               AUTOSTATUSCAP, CLOSETEXT, '', MIDX, 0, MIDY, 0, DRAGGABLE, WIDTH,
306               576, HEIGHT, 268, BGCOLOR, '#333399', CGCOLOR, '#333399',
307               TEXTSIZE, 3 );
308           } else {
309             // no response
310             <% $post_censustract %>;
311           }
312         },
313         0);
314   } else {
315     <% $post_censustract %>;
316   }
317 %   } else { # skip this step
318   <% $post_censustract %>;
319 %   }
320 }
321
322 function set_censustract(tract, year) {
323   var form = document.<% $formname %>;
324   form.elements['censustract'].value = tract;
325   form.elements['censusyear'].value = year;
326   <% $post_censustract %>;
327 }
328
329 % } # $census_functions
330
331 <%init>
332
333 my %opt = @_;
334 my $conf = new FS::Conf;
335
336 my $withcensus = $opt{'with_census'} ? 1 : 0;
337
338 my @prefixes = '';
339 my $billship = $opt{'billship'} ? 1 : 0; # whether to have bill_ and ship_ prefixes
340 my $taxpre = '';
341 # probably should just geocode both addresses, since either one could
342 # be a package address in the future
343 if ($billship) {
344   @prefixes = qw(bill_ ship_);
345   $taxpre = $conf->exists('tax-ship_address') ? 'ship_' : 'bill_';
346 }
347
348 my $formname =  $opt{form} || 'CustomerForm';
349 my $post_geocode = $opt{callback} || 'post_geocode();';
350 my $post_censustract;
351
352 my $census_functions = $opt{'with_census_functions'} ? 1 : 0;
353 if ( $census_functions ) {
354   $post_censustract = $post_geocode;
355   $post_geocode = 'confirm_censustract()';
356 }
357
358 </%init>