| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/leo/application/plugins/module_imobles/assets/js/ |
Upload File : |
/* global ind_mil, curr_code, ind_decimal */
$(document).ready(function ()
{
var _url = $("#_url").val();
$("#emsg").hide();
findDataSelectNotIn("#neighborhood_id_related", 'module_imobles/ajax/neighborhood','', '.neighborhood_id');
$("#submit_neig").click(function (e) {
$.ajax(
{
type: 'POST',
url: _url + "module_imobles/neighborhood/post",
data: new FormData($("#form-neighborhood")[0]),
processData: false,
contentType: false,
success: function (data) {
if (data == "OK") {
location.reload();
} else {
var body = $("html, body");
body.animate({scrollTop: 0}, '1000', 'swing');
$("#emsgbody").html(data);
$("#emsg").show("slow");
}
}
});
});
$('body').on('click', '.delete_alternative_names', function () {
$(this).closest('tr').remove();
});
$('#alternative-add').on('click', function () {
$("#body-alternative_names")
.append(
' <tr class="itm_nm_ftura ">'
+ '<td class="middle">'
+ '<input type="text" maxlength="100" class="form-control" name="alternative_names[]" value="" >'
+ '</td>'
+ '<td class="middle col-xs-1">'
+ '<span class="btn btn-danger btn-xs delete_alternative_names"><i class="fa fa-trash"></i> </span>'
+ '</td>'
+ '</tr>'
);
});
$("#state_id").on('change', function () {
buscaCity($(this).val(), "0");
});
$('#state_id').select2({theme: "bootstrap",
width: '100%'});
$('#neighnorhood_id_related').select2({theme: "bootstrap",
width: '100%'});
buscaCity($("#state_id").val(), $("#city_id").data("value"));
findGooglePlace("#neighborhood_google_place", 'module_imobles/ajax/getGooglePlace', '');
});
function buscaCity(state, valor) {
if (state) {
$.getJSON($("#_url").val() + 'ajax/city', {state_id: state}, function (j) {
var options = '<option value="0">' + $("#_msg_select_city").val() + '</option>';
for (var i = 0; i < j.length; i++) {
options += '<option value="' + j[i].id + '">' + j[i].city_name + '</option>';
}
$('#city_id').html(options);
$('#city_id').select2({theme: "bootstrap",
width: '100%'});
$('#city_id').select2("val", valor);
});
} else {
var options = '<option value="0">' + $("#_msg_select_city").val() + '</option>';
$('#city_id').html(options);
$('#city_id').select2({theme: "bootstrap",
width: '100%'});
$('#city_id').select2("val", "0");
}
}