File "consultaRegistros.php"

Full Path: C:/wamp64/www/INVENTAPP/views/consultaRegistros.php
File size: 3.83 KB
MIME-type: text/x-php
Charset: utf-8

<?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-info ">CONTROL DE REGISTROS</h4>
        </div>
        <div class="card-body">
            <div class="table-responsive">
            <button class="btn btn-info btn-sm mb-4 btnCargarTblConsulReg">CARGAR TABLA</button>

                <table class="table table-bordered table-sm" id="tblConsulRegistro" width="100%" cellspacing="0">
                <thead class="bg-info text-light">
                                        <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>
                                        </tr>
                                    </thead>

                                    <tbody>

                                    </tbody>
                                    <tfoot class="bg-info text-light">
                                        <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>
                                        </tr>
                                        

                                    </tfoot>
                </table>
            </div>
        </div>
    </div>

</div>
<!-- /.container-fluid -->
<?php
require_once "inferior.php"
?>