cambios en apidenuncias
This commit is contained in:
58
.codex-links/WebIntranet/selModo.aspx
Normal file
58
.codex-links/WebIntranet/selModo.aspx
Normal file
@@ -0,0 +1,58 @@
|
||||
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.master" CodeBehind="selModo.aspx.vb" Inherits="WebIntranet.selModo" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="Content" runat="server">
|
||||
<div runat="server" id="IncidenciasPendientesDiv">
|
||||
</div>
|
||||
|
||||
<div class="row pag" style="padding-top:200px">
|
||||
<div id="selModo" class="col" style="padding-inline: 0; display: flex; justify-content: center; align-items: center;">
|
||||
<div style="margin-inline: auto; width:100%">
|
||||
<div class="row home">
|
||||
<div class="col-md-6 btnSeccionDiv nominas" style="margin-inline: 0 !important">
|
||||
<a class="btnHome btnOAAFAzul d-flex align-items-end justify-content-start" style="background-color: #343334" href="selUsuarios.aspx">
|
||||
<h1 class="formatoCategoriasHome">Gestionar otras personas</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 btnSeccionDiv controlHorario" style="margin-inline: 0 !important">
|
||||
<a runat="server" onserverclick="Unnamed_ServerClick" class="btnHome btnOAAFBlack d-flex align-items-end justify-content-start" style="background-color: #2291d3">
|
||||
<h1 class="formatoCategoriasHome">Gestiones propias</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-12 btnSeccionDiv" id="btnSituacionPersonal" runat="server" style="margin-inline: 0 !important; justify-content:center;display:flex">
|
||||
<a runat="server" onclick="situacionPersonal()" class="btnHome btnOAAFBlack d-flex align-items-end justify-content-start" style="background-color: #c2c2c2;max-width:600px">
|
||||
<h1 class="formatoCategoriasHome">Situación del personal oficina</h1>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function setGestionesPropias() {
|
||||
$.ajax({
|
||||
type: "post",
|
||||
contentType: "application/json",
|
||||
url: "/selModo.aspx/listaUsuariosSeleccionados",
|
||||
data: '{"usuarios":"MODOPROPIO"}',
|
||||
dataType: "json",
|
||||
success: function (result) {
|
||||
if (result.d.includes("ERROR--")) {
|
||||
compEr(result.d)
|
||||
return
|
||||
}
|
||||
},
|
||||
error: function (result) {
|
||||
alert('error occured');
|
||||
//alert(result.responseText);
|
||||
},
|
||||
|
||||
});
|
||||
}
|
||||
function CerrarNotificacion() {
|
||||
$("#IncidenciasPendientesDiv").html("")
|
||||
$("#IncidenciasPendientesDiv").css("display", "none")
|
||||
}
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
</asp:Content>
|
||||
Reference in New Issue
Block a user