<!--
																				<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="Tipo: activate to sort column ascending" style="width: 39px;">ID ALERTA</th>
																				<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="Tipo: activate to sort column ascending" style="width: 59px;">Tipo</th>
																				<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="prioridad: activate to sort column ascending" style="width: 75px;">prioridad</th>
																				<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="nombre alerta: activate to sort column ascending" style="width: 116px;">nombre alerta</th>
																			<!-	<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="cliente: activate to sort column ascending" style="width: 157px;">cliente</th> ->
																				th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="fecha registro: activate to sort column ascending" style="width: 118px;">fecha registro</th><th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="fecha analisis: activate to sort column ascending" style="width: 111px;">fecha analisis</th><th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="status: activate to sort column ascending" style="width: 132px;">status</th><th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="Analizar: activate to sort column ascending" style="width: 70px;">Analizar</th>-->
																			</tr>
																		</thead>

																		<tbody role="alert" aria-live="polite" aria-relevant="all" style="text-transform: uppercase;">

											<?php 
include_once '../controller/cAlertasManuales.php';
include_once '../controller/cUtilerias.php';
$alertas = new cAlertasManuales();
$todas = $alertas->getTodasAlertas();
$util = new cUtilerias();
$i = 1;
echo "reporte";
while ($t = $todas->NextRow()) {
    ?>
											<tr class="gradeX odd">
												<td><?php 
    echo $t['clave'];
    ?>
</td>
												<td class=" "><?php 
    echo $t['origen'];
    ?>
</td>
コード例 #2
0
<?php

include_once "../controller/cUtilerias.php";
include_once "../controller/cAlertasManuales.php";
$util = new cUtilerias();
$males = new cAlertasManuales();
$lista = $males->listaAlertasAprobadas($_POST['id']);
?>
<table class="table" id="example" aria-describedby="empleados_info">
	<thead>
		<tr role="row">
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="Tipo: activate to sort column ascending" style="width: 59px;">#</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="prioridad: activate to sort column ascending" style="width: 75px;">prioridad</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="nombre alerta: activate to sort column ascending" style="width: 116px;">nombre de alerta</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="status: activate to sort column ascending" style="width: 132px;">Fecha de Registro</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="fecha registro: activate to sort column ascending" style="width: 118px;">fecha del Reporte</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="fecha analisis: activate to sort column ascending" style="width: 111px;">fecha de aprobación</th>
			<th class="sorting" role="columnheader" tabindex="0" aria-controls="empleados" rowspan="1" colspan="1" aria-label="Analizar: activate to sort column ascending" style="width: 100px;">Acciones</th>
		</tr>
	</thead>

	<tbody role="alert" aria-live="polite" aria-relevant="all" style="text-transform: uppercase;">
	<?php 
while ($l = $lista->NextRow()) {
    ?>
	 <tr>
	 	<td><?php 
    echo $l['asiento'];
    ?>
</td>
	 	<td><?php 
コード例 #3
0
						      </ul>
                		</div>
                	</div>
                </div>
						<div class="row">
							<div class="col-lg-12">
								<!-- inicio -->
								<div class="grid simple">
									<div class="row">
										<div class="col-lg-3">
											<div class="form-group" style="text-transform: uppercase">
												<label>Seleccione Tipo de Alerta</label>
												<select id="tipoAlerta" class="form-control"  style="text-transform: uppercase" onchange="cargaExpedientes()">
													<?php 
include '../controller/cAlertasManuales.php';
$aler = new cAlertasManuales();
$lista = $aler->listaAlertasM();
while ($l = $lista->NextRow()) {
    ?>
													<option value="<?php 
    echo $l['id_tipo_alertas_manuales'];
    ?>
">TIPO <?php 
    echo $l['tipo_alertas_manuales'];
    ?>
 </option>
													<?php 
}
?>
												</select>
											</div>
コード例 #4
0
<?php

include '../controller/cAlertasManuales.php';
$aler = new cAlertasManuales();
$naler = $aler->getNombAlerta($_POST['tipoA']);
?>

														<div class="grid-title">
															<div class="row">
																<div class="col-md-6">
																	<h4>generar alertas <span class="semi-bold" style="text-transform: uppercase"><?php 
echo $naler;
?>
</span></h4>
																</div>
																<div class="col-md-4"></div>
															</div>
														</div>
<div style="display: block;" class="grid-body ">
															<div  class="dataTables_wrapper form-inline">
																<table id="example" class="table table-hover dataTable" data-page-length='25'>
																	<thead>
																		<tr>
																			<th>Nombre/Razon</th>
																			<th>Telefono</th>
																			<th>Correo</th>
																			<th>Contrato</th>
																			<th>Fecha de Contrato</th>
																			<th>Monto de Cr&eacute;dito</th>
																			<th>Acciones</th>
																		</tr>
コード例 #5
0
<?php

@session_start();
include '../controller/cAlertasManuales.php';
include_once '../controller/cCatalogos.php';
$cata = new cCatalogos();
$aler = new cAlertasManuales();
$naler = $aler->getNombAlerta($_POST['idAlerta']);
global $prioridades;
$prioridades = $aler->listaPrioridades();
include_once "../model/mBitacora.php";
$bit = new mBitacora();
$bit->entradaBitacora($_SESSION["usuario"]["idUsuario"], "Alertas manuales", "Se ingresó a sección generar alertas manuales " . $naler);
?>

<div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Generar Alerta Manual <span style="text-transform: uppercase"> <?php 
echo $naler;
?>
 </span> </h4>
      </div>
      <div class="modal-body">
        <form id="formAlertaM">
		<input type="hidden" value="<?php 
echo $_SESSION["usuario"]["idUsuario"];
?>
" name="usuarioSesion" />
        	<input id="idAlertaInput" type="hidden" name="idTipoAlerta" value="<?php 
コード例 #6
0
<?php

@session_start();
include_once "../controller/cAlertasManuales.php";
include_once "../controller/cExpediente.php";
$alerta = new cAlertasManuales();
$alerta->cambiaEstatusAlerta($_POST['id'], 1);
$m = $alerta->esManual($_POST['id']);
$expe = new cExpediente();
//$clte = $expe->getExpediente($id);
?>
<div class="page-title"> <i class="fa fa-search"></i>

      <h3>Analizar operación sospechosa</h3>

    </div>
<div class="row-fluid">

      <div class="span12">

        <div class="grid simple ">

          <div class="grid-title">

            <h4>Alerta #2<span class="semi-bold"></span>

            </h4>

            <div class="padding: 0; margin: 0; text-align: right;"> 

		
コード例 #7
0
<?php

var_dump($_POST);
include_once "../controller/cAlertasManuales.php";
$alerta = new cAlertasManuales();
$alerta->cambiaEstatusAlerta($_POST['idalerta'], $_POST['status']);
コード例 #8
0
<?php

include_once "../controller/cExpediente.php";
include_once "../controller/cContratos.php";
include_once "../controller/cAlertasManuales.php";
include_once "../controller/cUtilerias.php";
include_once "../controller/cPagos.php";
include_once "../controller/cPerfilTransaccional.php";
$alert = new cAlertasManuales();
$dalerta = $alert->devuelveAlerta($_POST['id']);
// print_r($dalerta);
$alert->cambiaEstatusAlerta($_POST['id'], 1);
$util = new cUtilerias();
$expen = new cExpediente();
$pfclte = new cPerfilTransaccional();
$alert->fechaL($_POST['id']);
?>
<div class="modal-dialog" role="document" style="width: 85%">
	<div class="modal-content">
		<div class="modal-header">
			<button type="button" class="close" data-dismiss="modal" aria-label="Close">
				<span aria-hidden="true">&times;</span>
			</button>
			<h4 class="modal-title" id="myModalLabel">ANALIZAR ALERTA</h4>
		</div>
		<div class="modal-body">
			<ul class="nav nav-tabs" id="myTab">
				<li class="active">
					<a href="#informacion">Información</a>
				</li>
				<li>
コード例 #9
0
 public function regAlertaManual()
 {
     switch ($_POST['opcion']) {
         case 'MN':
             $alert = new cAlertasManuales();
             $respuesta = array('valor' => $alert->getDolar());
             echo json_encode($respuesta);
             break;
         case 'Registro':
             $alert = new cAlertasManuales();
             $datos = $alert->regNuevaAlertaManual($_POST['tipoOp'], $_POST['descOp'], $_POST['fechaO'], $_POST['monto'], $_POST['montomoneda'], $_POST['moneda'], $_POST['nreferencia'], $_POST['ncontrato'], $_POST['idTipoAlerta'], $_POST['usuarioSesion'], $_POST['prioridad'], $_POST['idAlertaEE']);
             echo "se guardo bien ";
             break;
         default:
             echo "No envio una opción";
             break;
     }
 }
コード例 #10
0
<?php

if ($_POST) {
    include '../controller/cAlertasManuales.php';
    switch ($_POST['opcion']) {
        case 'MN':
            $alert = new cAlertasManuales();
            // echo $alert->getDolar();
            $respuesta = array('valor' => $alert->getDolar());
            echo json_encode($respuesta);
            break;
        case 'Registro':
            $alert = new cAlertasManuales();
            // print_r($_POST);// ver lo que se envió
            $datos = $alert->regNuevaAlertaManual($_POST['tipoOp'], $_POST['descOp'], $_POST['fechaO'], $_POST['monto'], $_POST['montomoneda'], $_POST['moneda'], $_POST['nreferencia'], $_POST['ncontrato'], $_POST['idTipoAlerta'], $_POST['usuarioSesion'], $_POST['prioridad'], $_POST['idAlertaEE']);
            echo "se guardo bien ";
            break;
        default:
            echo "No envio una opción";
            break;
    }
}
// include ('../controller/cAlertasManuales.php');
// $ale = new cAlertasManuales();
// //$m = $ale->regAlerta($descripcion, $fecha, $monto, $montomn, $moneda, $refpago, $contrato, $tipoAlerta, $usuario, $prioridad, $detalles, $dictamen, $origen, $tori, $idexpl);
// //echo "ALERTA REGISTRADA CON ÉXITO";
// var_dump($_POST);
?>