File "controlRegistros.php"
Full Path: C:/wamp64/www/INVENTAPP/views/controlRegistros.php
File size: 3.42 KB
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
if ($_SESSION["controlReg"] == null) {
header('Location:' . getenv('HTTP_REFERER'));
} elseif (!isset($_SESSION["controlReg"])) {
header('Location:' . getenv('HTTP_REFERER'));
}
?>
<?php
require_once "superior.php"
?>
<!-- Begin Page Content -->
<div class="container-fluid">
<!-- DataTales Example -->
<div class="card shadow mb-4">
<div class="card-header py-3">
<h4 class="m-0 font-weight-bold text-dark">CONTROL DE REGISTROS</h4>
</div>
<div class="card-body">
<div class="table-responsive">
<button class="btn btn-success btn-sm mb-4 btnCargarTblControlReg">CARGAR TABLA</button>
<table class="table table-bordered table-sm" id="tblControlRegistro" width="100%" cellspacing="0">
<thead class="bg-warning text-dark">
<tr>
<th>IDMOV</th>
<th>TPDCTO</th>
<th>CODUBI</th>
<th>FECHA</th>
<th>ESTADO</th>
<th>USUARIO</th>
<th>CODPROD</th>
<th>NPROD</th>
<th style="padding-right: 120px;">CANTIDAD</th>
<th style="padding-right: 120px;">CANTEMPAQ</th>
<th style="padding-right: 120px;">BULTOS</th>
<th style="padding-right: 120px;">CAJAS</th>
<th style="padding-right: 150px;">CNASTA POLLO</th>
<th style="padding-right: 150px;">CNASTA PAVO</th>
<th style="padding-right: 150px;">CTILLA POLLO</th>
<th style="padding-right: 150px;">CTILLA PV</th>
<th style="padding-right: 120px;">BASES</th>
<th>RESPONSABLE</th>
<th>PLANILLADOR</th>
<th>LOTE</th>
<th>PESOPROM</th>
<th>ACCIÓN</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot class="bg-warning text-dark">
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<!-- /.container-fluid -->
<?php
require_once "inferior.php"
?>