X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Ftr-select-cust_location.html;h=7a5b43bb8aac8ea98f8177aa42d25cb9100d13be;hb=3d8dcf062ffb2da2aa4969a516c210680dab266d;hp=d17e4dfee6dc38c3e2d1a622e34a156d03af5e41;hpb=528e7e1cb1a6d05f87847bf9fd9b7e0e9fc33f6f;p=freeside.git diff --git a/httemplate/elements/tr-select-cust_location.html b/httemplate/elements/tr-select-cust_location.html index d17e4dfee..7a5b43bb8 100644 --- a/httemplate/elements/tr-select-cust_location.html +++ b/httemplate/elements/tr-select-cust_location.html @@ -31,6 +31,24 @@ Example: else what.form.<%$_%>.value = ''; if( ftype != 'SELECT') what.form.<%$_%>.style.backgroundColor = '#dddddd'; % } + if(what.form.enter_censustract) { + what.form.enter_censustract.disabled = true; + } + } + + function location_clear(what) { +% for (grep { $_ ne 'location_number' } @location_fields, 'city_select') { + var ftype = what.form.<%$_%>.tagName; + if( ftype == 'INPUT' ) what.form.<%$_%>.value = ''; +% } + if(what.form.enter_censustract) { + what.form.enter_censustract.value = ''; + } +% if ( $opt{'alt_format'} ) { + changeSelect(what.form.location_kind, ''); + changeSelect(what.form.location_type, ''); + what.form.location_number.value = ''; +% } } function location_enable(what) { @@ -38,24 +56,27 @@ Example: what.form.<%$_%>.disabled = false; var ftype = what.form.<%$_%>.tagName; if( ftype != 'SELECT') what.form.<%$_%>.style.backgroundColor = '#ffffff'; - if( ftype == 'INPUT' ) what.form.<%$_%>.value = ''; % } - - if ( what.form.location_type.options[what.form.location_type.selectedIndex].value ) { + if(what.form.enter_censustract) { + what.form.enter_censustract.disabled = false; + } +% if ( $opt{'alt_format'} ) { + if ( what.form.location_type && + what.form.location_type.options[what.form.location_type.selectedIndex].value ) { what.form.location_number.disabled = false; what.form.location_number.style.backgroundColor = '#ffffff'; - } - what.form.location_number.value = ''; + } +% } } function locationnum_changed(what) { var locationnum = what.options[what.selectedIndex].value; - if ( locationnum == -2 ) { + if ( locationnum == -2 ) { //(not required) location_disable(what); return; } - if ( locationnum == -1 ) { - location_enable(what); + if ( locationnum == -1 ) { //Add new location + location_clear(what); changeSelect(what.form.country, <% $countrydefault |js_string %>); @@ -64,28 +85,34 @@ Example: '' ) ); + + location_enable(what); return; } + if ( locationnum == -3 ) { //service address location for qualificaitons + what.form.address1.value = <% $cust_location->address1 |js_string %>; + what.form.address2.value = <% $cust_location->address2 |js_string %>; + what.form.city.value = <% $cust_location->city |js_string %>; + what.form.zip.value = <% $cust_location->zip |js_string %>; +% if ( $opt{'alt_format'} ) { + what.form.location_number.value = <% $cust_location->location_number |js_string %>; + changeSelect(what.form.location_kind, <% $cust_location->location_kind |js_string %> ); + changeSelect(what.form.location_type, <% $cust_location->location_type |js_string %> ); +% } - if ( locationnum == 0 ) { -% if ( $cust_main ) { - what.form.address1.value = <% $cust_main->get($prefix.'address1') |js_string %>; - what.form.address2.value = <% $cust_main->get($prefix.'address2') |js_string %>; - what.form.city.value = <% $cust_main->get($prefix.'city') |js_string %>; - what.form.zip.value = <% $cust_main->get($prefix.'zip') |js_string %>; - - changeSelect(what.form.country, <% $cust_main->get($prefix.'country') | js_string %> ); + changeSelect(what.form.country, <% $cust_location->country | js_string %> ); country_changed( what.form.country, - fix_state_factory( <% $cust_main->get($prefix.'state') | js_string %>, - <% $cust_main->get($prefix.'county') | js_string %> + fix_state_factory( <% $cust_location->state | js_string %>, + <% $cust_location->county | js_string %> ) ); -% } + location_enable(what); + return; + } - } else { - get_location( locationnum, update_location ); - } +%# default service address is now just another location + get_location( locationnum, update_location ); % if ( $editable ) { if ( locationnum == 0 ) { @@ -135,18 +162,16 @@ Example: } } + var location_fields = <% encode_json(\@location_fields) %>; function update_location( string ) { - var hash = eval('('+string+')'); - document.getElementById('address1').value = hash['address1']; - document.getElementById('address2').value = hash['address2']; - document.getElementById('city').value = hash['city']; - document.getElementById('zip').value = hash['zip']; - - var country_el = document.getElementById('country'); - - changeSelect( country_el, hash['country'] ); - - country_changed( country_el, + var hash = JSON.parse(string); + for(var i = 0; i < location_fields.length; i++) { + var f = location_fields[i]; + if (hash[f] && document.getElementById(f)) { + document.getElementById(f).value = hash[f]; + } + } + country_changed( document.getElementById('country'), fix_state_factory( hash['state'], hash['county'] ) @@ -156,20 +181,28 @@ Example: - <<%$th%> ALIGN="right"><% $opt{'label'} || 'Service location' %>> + <<%$th%> ALIGN="right"><% $opt{'label'} || emt('Service location') %>> - +% if ( $cust_main ) { +