$('#estructura_centros').submit(function(e){
var ok=true;
$('.just_numbers').each(function(){
if (!$(this).val())
{
ok=false;
return false;
}
});
if (!ok)
{
alert('Debe completar toda la informaciĆ³n de las prioridades y cupos de las unidades');
e.preventDefault();
}
});
$('#base_select').change(function(){
var base = $('#base_select').val();
if (base)
{
$('#base_select').val('');
var url = '{{ path('add_base', {'base':'__BASE__'}) }}';
url = url.replace('__BASE__',base);
$('#tab-centros').mask(' Adicionando base...');
$.ajax({
url: url,
type: 'GET',
processData: false,
contentType: false,
dataType: 'json',
success: function (data) {
$('#tab-centros').unmask();
if (data.ok)
{
$('#base_select').parent().parent().after(data.html);
$('#base_option_'+base).addClass('hide');
fillLugarSelect();
}
else
{
showError(bootbox, data.msg);
}
},
});
}
});
fillUnidadSelect();
fillLugarSelect();