Actualizacion desarrollo panel de control y busqueda de usuarios

parent aad4faed
...@@ -96,13 +96,13 @@ ...@@ -96,13 +96,13 @@
} }
function openEditarDatosUsuario(event, id, mail, telefono){ function openEditarDatosUsuario(event, id){
event.preventDefault(); event.preventDefault();
//Seteo de los datos del usuario en modal desplegado //Seteo de los datos del usuario en modal desplegado
$("#correoUsuario").val(mail); $("#correoUsuario").val($("#emailTabla").html());
$("#correoUsuario").html(mail); $("#correoUsuario").html($("#emailTabla").html());
$("#telefonoUsuario").val(telefono); $("#telefonoUsuario").val($("#movilTabla").html());
$("#telefonoUsuario").html(telefono); $("#telefonoUsuario").html($("#movilTabla").html());
$("#idUsuario").val(id); $("#idUsuario").val(id);
$("#modalEdicionUsuarios").modal({ $("#modalEdicionUsuarios").modal({
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</div> </div>
{%if usuario is not null %} {%if usuario is not null %}
<div class="panel-body"> <div class="panel-body">
<span title="Editar datos usuario" style="float:right;cursor:pointer" onclick="openEditarDatosUsuario(event,{{usuario.getUmcId()}},'{{usuario.getUmcMovistarEmail()}}','{{usuario.getUmcMovil()}}')"><i class="fa fa-edit fa-3x"></i></span> <span title="Editar datos usuario" style="float:right;cursor:pointer" onclick="openEditarDatosUsuario(event,{{usuario.getUmcId()}})"><i class="fa fa-edit fa-3x"></i></span>
<div class="btn-group m-r-5 m-b-5"> <div class="btn-group m-r-5 m-b-5">
<a href="javascript:;" class="btn btn-primary"><i class="fa fa-share"></i> Enviar Licencia</a> <a href="javascript:;" class="btn btn-primary"><i class="fa fa-share"></i> Enviar Licencia</a>
<a href="javascript:;" data-toggle="dropdown" class="btn btn-primary dropdown-toggle" aria-expanded="false"> <a href="javascript:;" data-toggle="dropdown" class="btn btn-primary dropdown-toggle" aria-expanded="false">
......
...@@ -97,7 +97,7 @@ backend_researcher_editar_usuario: ...@@ -97,7 +97,7 @@ backend_researcher_editar_usuario:
backend_researcher_enviar_correo: backend_researcher_enviar_correo:
path: /researcher/enviar/correo path: /researcher/enviar/correo
defaults: {_controller: BackendBundle:Rsearch:enviarCorreo} defaults: {_controller: BackendBundle:Research:enviarCorreo}
methods: [POST] methods: [POST]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment