$(document).ready(function() {
if( $('#js-cerca-officine').length > 0 ){
$('#js-cerca-officine').on('click', function (e){
e.preventDefault();
if( $('#mappa-officine').length > 0 ){
/**
* Controllo obbligatorietĂ campi
*/
if( typeof $('#nome_officina').val() != "undefined" && $('#nome_officina').val() != null && $('#nome_officina').val().trim() != '' ){
/**
* Controllo integritĂ dei dati
*/
if( (typeof $('#google_places').val() != "undefined" && $('#google_places').val() != null && $('#google_places').val().trim().length > 0) || (typeof $('#raggio').val() != "undefined" && $('#raggio').val() != null && $('#raggio').val().trim() > 0)){
if($('#google_places').val().trim().length > 0 && (typeof $('#raggio').val() == "undefined" || $('#raggio').val() == null || $('#raggio').val().trim() == 0)) {
swal({
title: "AVVISO_ERRORE",
text: "AVVISO_INSERIRE_UN_RAGGIO",
type: "error",
showConfirmButton: true
});
} else if ( (typeof $('#google_places').val() == "undefined" || $('#google_places').val() == null || $('#google_places').val().trim().length == 0) && (typeof $('#raggio').val() != "undefined" && $('#raggio').val() != null && $('#raggio').val().trim() > 0)) {
swal({
title: "AVVISO_ERRORE",
text: "AVVISO_INSERIRE_INDIRIZZO_RICERCA",
type: "error",
showConfirmButton: true
});
} else {
$('#mappa-officine').submit();
}
} else {
$('#mappa-officine').submit();
}
} else {
if( (typeof $('#google_places').val() != "undefined" && $('#google_places').val() != null && $('#google_places').val().trim().length > 0) && (typeof $('#raggio').val() != "undefined" && $('#raggio').val() != null && $('#raggio').val().trim() > 0)){
$('#mappa-officine').submit();
} else {
if( (typeof $('#google_places').val() != "undefined" && $('#google_places').val() != null && $('#google_places').val().trim().length > 0) && (typeof $('#raggio').val() == "undefined" || $('#raggio').val() == null || $('#raggio').val().trim() == 0)) {
swal({
title: "AVVISO_ERRORE",
text: "AVVISO_INSERIRE_UN_RAGGIO",
type: "error",
showConfirmButton: true
});
} else if ( (typeof $('#google_places').val() == "undefined" || $('#google_places').val() == null || $('#google_places').val().trim().length == 0) && typeof $('#raggio').val() != "undefined" && $('#raggio').val() != null && $('#raggio').val().trim() > 0) {
swal({
title: "AVVISO_ERRORE",
text: "AVVISO_INSERIRE_INDIRIZZO_RICERCA",
type: "error",
showConfirmButton: true
});
}
}
}
}
});
}
if( $('#js-azzera-officine').length > 0 ){
$('#js-azzera-officine').on('click', function (){
$('#azzeraOfficine').submit();
});
}
});