File "FOR-S-CCI-90.php"

Full Path: C:/wamp64/www/CALIDADWEB/CALIDADWEB/FRONTED/HTML/FOR-S-CCI-90.php
File size: 67.76 KB
MIME-type: text/x-php
Charset: utf-8

<?php
// 1. CONEXIÓN
require_once "../../BACKEND/conexiones/conexion.php";

// Iniciar sesión
if (session_status() !== PHP_SESSION_ACTIVE) {
  session_start();
}

// Obtener usuario
$iduser = isset($_SESSION["iduser"]) ? htmlspecialchars($_SESSION["iduser"]) : 'No Ingresado';
// ⬇️⬇️⬇️ SISTEMA DE PERMISOS - AGREGAR ESTAS LÍNEAS ⬇️⬇️⬇️
$usuario_actual = isset($_SESSION['usuario']) ? $_SESSION['usuario'] : null;
$usuarios_admin = array('12345', '63546660');
$es_admin = in_array($usuario_actual, $usuarios_admin);
// ⬆️⬆️⬆️ FIN SISTEMA DE PERMISOS ⬆️⬆️⬆️
?>
<!DOCTYPE html>
<html lang="es">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CALIDADWEB - FOR-S-CCI-90 </title>

  <link rel="stylesheet" href="../CSS/style_main.css">
  <link rel="shortcut icon" href="../img/avic.jpeg">
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
  <link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
  <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs5/dt-1.11.5/datatables.min.css" />

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
  <script>
    const esUsuarioAdmin = <?php echo ($es_admin === true) ? 'true' : 'false'; ?>;
    const usuarioActualNombre = "<?php echo htmlspecialchars($usuario_actual); ?>";
  </script>
  <style>
    body {
      background: linear-gradient(135deg, #ffcf4d 0%, #f8ae26 100%);
      min-height: 100vh;
      /* Para que el fondo cubra toda la pantalla */
    }

    .card-header-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 0.5rem !important;
    }

    .reloj-container {
      border: 2px solid white;
      border-radius: 10px;
      padding: 10px;
      text-align: left;
    }

    .user-info {
      font-size: 0.9rem;
      text-shadow: 1px 1px 5px black;
      text-decoration: underline;
    }

    .form-control:focus {
      border-color: #ff8a37;
      box-shadow: 0 0 0 0.2rem rgba(255, 138, 55, 0.25);
    }

    .section-container {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
    }

    .info-banner {
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 25px;
      text-align: center;
      font-size: 1.1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .form-label {
      font-weight: 600;
      margin-bottom: 8px;
    }

    textarea.form-control {
      resize: vertical;
    }

    .nav-tabs .nav-link.active {
      background-color: rgb(255 138 55) !important;
      /* naranja */
      color: white !important;
    }

    .nav-tabs .nav-link {
      background-color: #f0f0f0;
      /* inactiva */
      color: black;
    }
  </style>
</head>

<body>

  <?php if (!empty($_SESSION['mensaje'])): ?>
    <script>
      window.swalData = {
        title: <?= json_encode($_SESSION['tipo'] === 'success' ? 'Éxito' : 'Atención') ?>,
        text: <?= json_encode($_SESSION['mensaje']) ?>,
        icon: <?= json_encode($_SESSION['tipo']) ?>
      };
    </script>
  <?php
    unset($_SESSION['mensaje'], $_SESSION['tipo'], $_SESSION['icon']);
  endif;
  ?>

  <div class="container-lg mt-5 mb-5">
    <form id="formGeneral" method="POST" action="../../BACKEND/controller/FOR-S-CCI-90.php">
      <div class="card shadow-lg" style="background-color: rgb(255, 138, 55); color: white;">

        <div class="card-header border-bottom border-white mb-4">
          <h5 class="text-center mt-2 mb-0">
            <i class='bx bx-droplet'></i> FOR-S-CCI-90 - CONTROL DE PROCESO ENFRIAMIENTO DE VISCERAS
          </h5>
        </div>


        <div class="container-fluid">
          <div class="col-md-12">

            <div class="card">
              <div class="card-header">
                <ul class="nav nav-tabs card-header-tabs" id="mainTabs" role="tablist">
                  <li class="nav-item" role="presentation">
                    <button class="nav-link active" id="tab-plataforma" data-bs-toggle="tab"
                      data-bs-target="#pccEvisc" type="button" role="tab">
                      MONITOREO
                    </button>
                  </li>
                  <li class="nav-item" role="presentation">
                    <button class="nav-link" id="tab-escaldado" data-bs-toggle="tab"
                      data-bs-target="#pccEvisVerifi" type="button" role="tab">
                      VERIFICACIONES
                    </button>
                  </li>
                  <li class="nav-item" role="presentation">
                    <button class="nav-link" id="tab-escaldado" data-bs-toggle="tab"
                      data-bs-target="#pccEvisConsul" type="button" role="tab">

                      CONSULTAR VERIFICACIONES
                    </button>
                  </li>
                  <li class="nav-item" role="presentation">
                    <button class="nav-link" id="tab-escaldado" data-bs-toggle="tab"
                      data-bs-target="#tblPccEvisc" type="button" role="tab">
                      CONSULTAR MONITOREO
                    </button>
                  </li>

                </ul>
              </div>

              <!-- CONTENIDO TABS PRINCIPALES -->
              <div class="card-body" style="background-color: rgb(255 138 55);">
                <div class="tab-content" id="mainTabContent">

                  <div class="tab-pane active" id="pccEvisc" role="tabpanel">
                    <div class="row" style="display: flex; text-align:center; font-size:larger">
                      <div class="col-md-4">

                        <i class='bx bx-time'></i>HORA REGISTRO</label><br>
                        <input type="time" name="pccViscHora" id="pccViscHora" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-4">
                        <label for="">TIPO DE AVE</label><br>
                        <select class="form-select" class="form-control" id="tipoAveConvis" name="tipoAveConVis" aria-label="Default select example">
                          <option value="" selected hidden>Selecciona</option>
                          <?php
                          $vv = "SELECT * FROM tipo_ave";
                          $ave = mysqli_query($conexion, $vv);
                          while ($aves = mysqli_fetch_row($ave)) { ?>
                            <option value="<?php echo $aves[2]; ?>"><?php echo $aves[1]; ?></option>
                          <?php }
                          ?>
                        </select>
                      </div>
                      <div class="col-md-4">
                        <i class='bx bx-barcode-reader'></i> Lote</label><br>
                        <input style="text-transform:uppercase;" type="text" name="pccVisclote" id="pccVisclote">
                      </div>
                      <legend style="margin-top:30px">Visceras <br>
                        <small style="font-size: 1rem;">(TEMPERATURA DE VISCERA MENOR O IGUAL A 3.8°C)</small>
                      </legend><br>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: baseline;justify-content: center; margin-top:30px">
                      <legend style="    border-bottom: dotted;">HIGADOS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="HM01" id="HM01" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="HM02" id="HM02" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="HM03" id="HM03" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="HM04" id="HM04" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="HM05" id="HM05" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5">
                        <label for="">TEMPERATURA AGUA</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="HTemperaturaC" id="HTemperaturaC" onchange="
                                if (document.getElementById('HTemperaturaC').value > 2 ){
                                  document.getElementById('HTemperaturaC').style.backgroundColor = 'red';
                                  document.getElementById('HTemperaturaC').style.fontWeight = '800';
                                }else{
                                  document.getElementById('HTemperaturaC').style.fontWeight = '400';
                                  document.getElementById('HTemperaturaC').style.backgroundColor = '#e8ecef';
                                }
                                " step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="generalmoni1">¿Hay salida de visceras en el Chiller?</label>
                        <select name="generalmoni1" id="generalmoni1" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: baseline;justify-content: center; margin-top:30px">
                      <legend style="    border-bottom: dotted;">MOLLEJAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="MM01" id="MM01" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="MM02" id="MM02" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="MM03" id="MM03" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="MM04" id="MM04" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="MM05" id="MM05" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5">
                        <label for="">TEMPERATURA AGUA</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="MTemperaturaC" id="MTemperaturaC" onchange="
                                if (document.getElementById('MTemperaturaC').value > 2 ){
                                  document.getElementById('MTemperaturaC').style.backgroundColor = 'red';
                                  document.getElementById('MTemperaturaC').style.fontWeight = '800';
                                }else{
                                  document.getElementById('MTemperaturaC').style.fontWeight = '400';
                                  document.getElementById('MTemperaturaC').style.backgroundColor = '#e8ecef';
                                }
                                " step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="generalmoni2">¿Hay salida de visceras en el Chiller?</label>
                        <select name="generalmoni2" id="generalmoni2" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: baseline;justify-content: center; margin-top:30px">
                      <legend style="    border-bottom: dotted;">PATAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="PM01" id="PM01" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="PM02" id="PM02" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="PM03" id="PM03" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="PM04" id="PM04" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="PM05" id="PM05" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5">
                        <label for="">TEMPERATURA AGUA</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="PTemperaturaC" id="PTemperaturaC" onchange="
                                if (document.getElementById('PTemperaturaC').value > 2 ){
                                  document.getElementById('PTemperaturaC').style.backgroundColor = 'red';
                                  document.getElementById('PTemperaturaC').style.fontWeight = '800';
                                }else{
                                  document.getElementById('PTemperaturaC').style.fontWeight = '400';
                                  document.getElementById('PTemperaturaC').style.backgroundColor = '#e8ecef';
                                }
                                " step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="generalmoni3">¿Hay salida de visceras en el Chiller?</label>
                        <select name="generalmoni3" id="generalmoni3" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: baseline;justify-content: center; margin-top:30px">
                      <legend style="    border-bottom: dotted;">CABEZAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="CM01" id="CM01" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="CM02" id="CM02" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="CM03" id="CM03" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="CM04" id="CM04" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="CM05" id="CM05" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5">
                        <label for="">TEMPERATURA AGUA</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="CTemperaturaC" id="CTemperaturaC" onchange="
                                if (document.getElementById('CTemperaturaC').value > 2 ){
                                  document.getElementById('CTemperaturaC').style.backgroundColor = 'red';
                                  document.getElementById('CTemperaturaC').style.fontWeight = '800';
                                }else{
                                  document.getElementById('CTemperaturaC').style.fontWeight = '400';
                                  document.getElementById('CTemperaturaC').style.backgroundColor = '#e8ecef';
                                }
                                " step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="generalmoni">¿Hay salida de visceras en el Chiller?</label>
                        <select name="generalmoni" id="generalmoni" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>

                    <div class="container-fluid" style="font-size: small; display:contents;">
                      <legend style="    border-bottom: dotted;margin-top:40px"></legend><br>
                      <legend style="    border-bottom: dotted;">CORRECTIVO </legend><br>
                      <div class="c">
                        <table class="table table-light table-striped table-hover" style="border-radius: 1em; text-align:center;margin-top:30px " id="">
                          <thead style="border: 1px solid;vertical-align: middle">
                            <tr>
                              <th colspan="4" style="background-color: lightblue;">TABLA GUIA DE NO CONFORMIDADES Y ACCIONES CORRECTIVAS</th>
                            </tr>
                            <tr>
                              <th scope="col" style="border: 1px solid;">MUESTRA</th>
                              <th scope="col" style="border: 1px solid;">NO CONFORMIDAD</th>
                              <th scope="col" style="border: 1px solid;">CODIGO</th>
                              <th scope="col">CORRECCION</th>
                            </tr>
                          </thead>
                          <tbody>
                            <tr>
                              <th scope="row" style="border-left:1px solid;border-bottom:1px solid;">PRODUCTO</th>
                              <td style="border-bottom:1px solid;">Viscera salida de chiller >4°C</td>
                              <td style="border-bottom:1px solid;">VI05</td>
                              <td style="border-bottom:1px solid;">Aumentar el tiempo de retención en el chiller para la disminución de temperatura</td>
                            </tr>
                            <tr>
                              <th rowspan="3" style="border-bottom: 1px solid; border-left: 1px solid;vertical-align: middle;">AGUA</th>
                              <td style="border-bottom:1px solid;">Agua de enfriamiento en chiller >2°C</td>
                              <td style="border-bottom:1px solid;">VI06</td>
                              <td style="border-bottom:1px solid;">Abrir la entrada de agua para recircular y hacer adición de hielo. </td>
                            </tr>
                          </tbody>
                        </table>
                      </div>
                    </div>
                    <div class="row" style="display: flex; justify-content:center;  text-align:center; font-size:larger; align-items: baseline;">

                      <div class="col-md-4">
                        <label for="" style="    line-height: 1rem;">CODIGO<br><small style="font-size: 11px;">(De no haber acciones correctivas, dejar el número 0)</small></label><br>
                        <input type="text" class="form-control" style="text-transform:uppercase" name="pccEvisCodigo" id="pccEvisCodigo" aria-describedby="basic-addon2" placeholder="">
                      </div>
                      <div class="col-md-6" style="margin-top:30px">
                        <label for="">RESPONSABLE REGISTRO</label><br>
                        <input style="text-transform:uppercase;" type="text" name="pccViscRespo" id="pccViscRespo">
                      </div>
                      <div class="col-md-6">
                        <label for="">OBSERVACIONES</label>
                        <textarea class="form-control" style="border-radius: 5px;text-align:center;" name="pccObservaciones" id="pccObservaciones" rows="2" placeholder="Ingrese las observaciones correspondientes..."></textarea>
                      </div>
                      <div class="col-md-6" style="margin-top:30px">
                        <label for="">APROBÓ</label><br>
                        <input style="text-transform:uppercase;" type="text" name="pccViscAprobo" id="pccViscAprobo">
                      </div>

                    </div>
                    <div class="col-md-4 offset-md-4 mt-4 mb-4 text-center" style="height:50px;">
                      <button type="submit" name="formPccEviscera" class="btn btn-info btn-sm shadow" style="width: auto; padding: 8px 20px; font-weight: bold;">
                        <i class='bx bx-save'></i> ENVIAR CONTROL
                      </button>
                    </div>


                  </div>
                  <div class="tab-pane" id="pccEvisVerifi" role="tabpanel" aria-labelledby="pccEvisVerifi-tab">
                    <div class="row" style="justify-content: center;text-align: -webkit-center;">
                      <div class="col-md-8">
                        <legend style=" border-bottom: dotted;">HORA DE REGISTRO <br></legend><br>
                        <input style="font-style: oblique;font-size: xx-large;" type="time" name="evisVerifiHora" id="evisVerifiHora" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: end;justify-content: center;margin-top:30px">
                      <legend style="    border-bottom: dotted;">HIGADOS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VHM1" id="VHM1" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VHM2" id="VHM2" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VHM3" id="VHM3" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VHM4" id="VH4M" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VHM5" id="VHM5" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <!--   <div class="col-md-2">
                                <label for="">Muestra 6</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM6" id="VHM6" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 7</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM7" id="VHM7" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 8</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM8" id="VHM8" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 9</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM9" id="VHM9" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 10</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM10" id="VHM10" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 11</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM11" id="VHM11" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 12</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM12" id="VHM12" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 13</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM13" id="VHM13" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 14</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM14" id="VHM14" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 15</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM15" id="VHM15" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 16</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM16" id="VHM16" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 17</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VHM17" id="VHM17" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>-->
                      <div class="col-md-4">
                        <label for="">TEMPERATURA PROMEDIO</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="VHTemperaturaC" id="VHTemperaturaC" class="form-control" placeholder="" aria-describedby="helpId" readonly><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="trazabilidadHigados">¿Hay salida de visceras en el Chiller?</label>
                        <select name="trazabilidadHigados" id="trazabilidadHigados" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: end;justify-content: center;margin-top:30px">
                      <legend style="    border-bottom: dotted;">MOLLEJAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VMM1" id="VMM1" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VMM2" id="VMM2" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VMM3" id="VMM3" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VMM4" id="VMM4" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VMM5" id="VMM5" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <!--   <div class="col-md-2">
                                <label for="">Muestra 6</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM6" id="VMM6" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 7</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM7" id="VMM7" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 8</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM8" id="VMM8" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 9</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM9" id="VMM9" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 10</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM10" id="VMM10" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestar 11</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM11" id="VMM11" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestar 12</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM12" id="VMM12" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 13</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM13" id="VMM13" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 14</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM14" id="VMM14" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 15</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM15" id="VMM15" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 16</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM16" id="VMM16" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 17</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VMM17" id="VMM17" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div> -->
                      <div class="col-md-4">
                        <label for="">TEMPERATURA PROMEDIO</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="VMTemperaturaC" id="VMTemperaturaC" class="form-control" placeholder="" aria-describedby="helpId" readonly><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="trazabilidadMollejas">¿Hay salida de visceras en el Chiller?</label>
                        <select name="trazabilidadMollejas" id="trazabilidadMollejas" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>
                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: end;justify-content: center;margin-top:30px">
                      <legend style="    border-bottom: dotted;">PATAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VPM1" id="VPM1" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VPM2" id="VPM2" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VPM3" id="VPM3" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VPM4" id="VPM4" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VPM5" id="VPM5" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <!--    <div class="col-md-2">
                                <label for="">Muestra 6</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM6" id="VPM6" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 7</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM7" id="VPM7" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 8</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM8" id="VPM8" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 9</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM9" id="VPM9" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 10</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM10" id="VPM10" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 11</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM11" id="VPM11" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 12</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM12" id="VPM12" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 13</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM13" id="VPM13" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 14</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM14" id="VPM14" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 15</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM15" id="VPM15" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 16</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM16" id="VPM16" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 17</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VPM17" id="VPM17" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div> -->
                      <div class="col-md-4">
                        <label for="">TEMPERATURA PROMEDIO</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="VPTemperaturaC" id="VPTemperaturaC" class="form-control" placeholder="" aria-describedby="helpId" readonly><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="trazabilidadPatas">¿Hay salida de visceras en el Chiller?</label>
                        <select name="trazabilidadPatas" id="trazabilidadPatas" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>

                    </div>
                    <div class="row" style="text-align: -webkit-center; align-items: end;justify-content: center;margin-top:30px">
                      <legend style="    border-bottom: dotted;">CABEZAS <br></legend><br>
                      <div class="col-md-2">
                        <label for="">Muestra 1</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VCM1" id="VCM1" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 2</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VCM2" id="VCM2" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 3</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VCM3" id="VCM3" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 4</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VCM4" id="VCM4" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <div class="col-md-2">
                        <label for="">Muestra 5</label><br>
                        <input type="number" style="padding:14px; font-size:15px" name="VCM5" id="VCM5" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                      </div>
                      <!--  <div class="col-md-2">
                                <label for="">Muestra 6</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM6" id="VCM6" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 7</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM7" id="VCM7" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 8</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM8" id="VCM8" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 9</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM9" id="VCM9" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 10</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM10" id="VCM10" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 11</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM11" id="VCM11" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 12</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM12" id="VCM12" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 13</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM13" id="VCM13" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 14</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM14" id="VCM14" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 15</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM15" id="VCM15" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 16</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM16" id="VCM16" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div>
                              <div class="col-md-2">
                                <label for="">Muestra 17</label><br>
                                <input type="number" style="padding:14px; font-size:15px" name="VCM17" id="VCM17" step="0.0001" class="form-control" placeholder="" aria-describedby="helpId"><br>
                              </div> -->
                      <div class="col-md-4">
                        <label for="">TEMPERATURA PROMEDIO</label><br>
                        <small>( ºC )</small><br>
                        <input type="number" name="VCTemperaturaC" id="VCTemperaturaC" class="form-control" placeholder="" aria-describedby="helpId" readonly><br>
                      </div>
                      <div class="col-md-5 mt-4">
                        <label for="trazabilidadCabezas">¿Hay salida de visceras en el Chiller?</label>
                        <select name="trazabilidadCabezas" id="trazabilidadCabezas" class="form-select">
                          <option value="" selected hidden> Selecciona..</option>
                          <option value="SI">SI</option>
                          <option value="NO">NO</option>
                        </select>
                      </div>


                      <br>
                    </div>
                    <br>
                    <div class="row" style="justify-content: center;text-align: -webkit-center;align-items: center;">
                      <br><br>
                      <div class="col-md-5">
                        <i class='bx bx-spreadsheet'></i>
                        <label for="">OBSERVACIONES</label><br>
                        <textarea class="form-control" style="border-radius: 5px;text-align:center;margin-top:30px" name="pccEviscObserv" id="pccEviscObserv" rows="2" placeholder="Ingrese las observaciones correspondientes..."></textarea>
                      </div>
                      <div class="col-md-5">
                        <label for="">RESPONSABLE VERIFICACIONES</label><br>
                        <input type="text" name="pccEviscResposanble" id="pccEviscResposanble">
                      </div>
                      <div class="col-md-5" style="margin-top:20px">

                        <i class='bx bx-check-double'></i>APROBÓ</label><br>
                        <input type="text" name="pccEviscAprobo" id="pccEviscAprobo">
                      </div>
                      <!--     <div class="col-md-5 mt-4">
                                <label for="generalsino">¿Hay salida de visceras en el Chiller?</label>
                                <select  name="generalsino" id="generalsino"  class="form-select" >
                                  <option value="" selected hidden> Selecciona..</option>
                                  <option value="SI">SI</option>
                                  <option value="NO">NO</option>
                                </select>
                              </div> -->

                    </div>
                    <div class="col-md-4 offset-md-4 mt-4 mb-4 text-center" style="height:50px;">
                      <button type="submit" name="formPccEviscVerifi" class="btn btn-info btn-sm shadow" style="width: auto; padding: 8px 20px; font-weight: bold;">
                        GUARDAR VERIFICACIÓN
                      </button>

                    </div>


                  </div>
                  <div class="tab-pane" id="pccEvisConsul" role="tabpanel" aria-labelledby="pccEvisConsul-tab">
                    <div class="container-fluid" style="font-size: small; display:contents">

                      <div class="c">
                        <button class="btn btn-light btn-sm mb-4 btnVeriConChillVisc" type="button">CARGAR TABLA</button>
                        <div class="table-responsive" style="overflow-x: auto;">
                          <table class="table table-light table-striped table-hover" style="border-radius: 1em; text-align:center; border: 5px solid transparent; width: 100%;" id="tblVeriConChillVisc">
                            <thead style="vertical-align: revert;">
                              <tr id="cabeceraDos">
                                <td colspan="3" scope="col"></td>
                                <td colspan="19" scope="col">HIGADOS</td>
                                <td colspan="19" scope="col">MOLLEJAS</td>
                                <td colspan="19" scope="col">PATAS</td>
                                <td colspan="19" scope="col">CABEZAS</td>
                                <td colspan="3" scope="col"></td>
                              </tr>
                              <tr id="cabeceraTres">
                                <th scope="col" style="min-width:50px">#</th>
                                <th scope="col" style="min-width:80px">Fecha</th>
                                <th scope="col">Hora</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>
                                <th scope="col">M6</th>
                                <th scope="col">M7</th>
                                <th scope="col">M8</th>
                                <th scope="col">M9</th>
                                <th scope="col">M10</th>
                                <th scope="col">M11</th>
                                <th scope="col">M12</th>
                                <th scope="col">M13</th>
                                <th scope="col">M14</th>
                                <th scope="col">M15</th>
                                <th scope="col">M16</th>
                                <th scope="col">M17</th>
                                <th scope="col">Temperatura Promedio (°C)</th>
                                <th scope="col">Falla Trazabilidad Higados</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>
                                <th scope="col">M6</th>
                                <th scope="col">M7</th>
                                <th scope="col">M8</th>
                                <th scope="col">M9</th>
                                <th scope="col">M10</th>
                                <th scope="col">M11</th>
                                <th scope="col">M12</th>
                                <th scope="col">M13</th>
                                <th scope="col">M14</th>
                                <th scope="col">M15</th>
                                <th scope="col">M16</th>
                                <th scope="col">M17</th>
                                <th scope="col">Temperatura Promedio (°C)</th>
                                <th scope="col">Falla Trazabilidad Mollejas</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>
                                <th scope="col">M6</th>
                                <th scope="col">M7</th>
                                <th scope="col">M8</th>
                                <th scope="col">M9</th>
                                <th scope="col">M10</th>
                                <th scope="col">M11</th>
                                <th scope="col">M12</th>
                                <th scope="col">M13</th>
                                <th scope="col">M14</th>
                                <th scope="col">M15</th>
                                <th scope="col">M16</th>
                                <th scope="col">M17</th>
                                <th scope="col">Temperatura Promedio (°C)</th>
                                <th scope="col">Falla Trazabilidad Patas</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>
                                <th scope="col">M6</th>
                                <th scope="col">M7</th>
                                <th scope="col">M8</th>
                                <th scope="col">M9</th>
                                <th scope="col">M10</th>
                                <th scope="col">M11</th>
                                <th scope="col">M12</th>
                                <th scope="col">M13</th>
                                <th scope="col">M14</th>
                                <th scope="col">M15</th>
                                <th scope="col">M16</th>
                                <th scope="col">M17</th>
                                <th scope="col">Temperatura Peomedio (°C)</th>
                                <th scope="col">Falla Trazabilidad Cabezas</th>
                                <th scope="col" style="min-width: 300px;">Observaciones</th>
                                <th scope="col">Resposable de Observaciones</th>
                                <th scope="col">Aprobó</th>
                                <th scope="col">General</th>
                              </tr>
                            </thead>
                            <tbody>

                            </tbody>
                          </table>
                        </div>
                      </div>
                    </div>
                  </div>
                  <div class="tab-pane" id="tblPccEvisc" role="tabpanel" aria-labelledby="tblPccEvisc-tab">
                    <div class="container-fluid" style="font-size: small; display:contents">

                      <div class="c">
                        <button class="btn btn-light btn-sm mb-4 btnConChillVisc" type="button">CARGAR TABLA</button>
                        <div class="table-responsive" style="overflow-x: auto;">
                          <table class="table table-light table-striped table-hover" style="border-radius: 1em; text-align:center; border: 5px solid transparent; width: 100%;" id="tblConChillVisc">
                            <thead style="vertical-align: revert;">
                              <tr id="cabeceraDos">
                                <td colspan="5" scope="col"></td>
                                <td colspan="6" scope="col">HIGADOS</td>
                                <td colspan="6" scope="col">MOLLEJAS</td>
                                <td colspan="6" scope="col">PATAS</td>
                                <td colspan="6" scope="col">CABEZAS</td>
                                <td colspan="4" scope="col"></td>
                              </tr>
                              <tr id="cabeceraTres">
                                <th scope="col">#</th>
                                <th scope="col" style="min-width:100px">Fecha</th>
                                <th scope="col">Hora</th>
                                <th scope="col">Tipo de Ave</th>
                                <th scope="col" style="min-width:80px">Lote</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>

                                <th scope="col">Temperatura (°C)</th>
                                <th scope="col">SI/NO</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>

                                <th scope="col">Temperatura (°C)</th>
                                <th scope="col">SI/NO</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>

                                <th scope="col">Temperatura (°C)</th>
                                <th scope="col">SI/NO</th>
                                <th scope="col">M1</th>
                                <th scope="col">M2</th>
                                <th scope="col">M3</th>
                                <th scope="col">M4</th>
                                <th scope="col">M5</th>

                                <th scope="col">Temperatura (°C)</th>
                                <th scope="col">SI/NO</th>

                                <th scope="col">Codigo</th>
                                <th scope="col">Responsable Registro</th>
                                <th scope="col" style="min-width:200px">Observaciones</th>
                                <th scope="col">Aprobó</th>
                                <th scope="col">General</th>
                              </tr>
                            </thead>
                            <tbody>

                            </tbody>
                        </div>
                        </table>
                      </div>
                    </div>
                  </div>



                </div>
              </div>
            </div>
          </div>
        </div>

        <!-- FOOTER -->
        <div class="card-footer border-top border-white">
          <div class="row align-items-center g-3">
            <div class="col-md-6">
              <div class="reloj-container">
                <span id="tiempo" class="d-block h3 mb-1">00:00:00</span>
                <p id="fecha" class="mb-2">Cargando fecha...</p>
                <p class="mb-0 user-info">
                  <i class='bx bx-user-circle'></i> Usuario: <strong><?php echo $iduser; ?></strong>
                </p>
              </div>
            </div>

            <div class="col-md-6">
              <div class="d-grid gap-2">


                <button type="button" class="btn btn-outline-light btn-lg" onclick="window.location.href='../mainJefe.php';">
                  <i class='bx bx-x'></i> CANCELAR
                </button>
              </div>
            </div>
          </div>
        </div>

      </div>
    </form>
  </div>

  <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.6/umd/popper.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"></script>
  <script type="text/javascript" src="https://cdn.datatables.net/v/bs5/jszip-2.5.0/dt-1.11.5/datatables.min.js"></script>
  <script type="text/javascript" src="https://cdn.datatables.net/v/bs5/jszip-2.5.0/dt-1.11.5/b-2.2.2/b-colvis-2.2.2/b-html5-2.2.2/b-print-2.2.2/r-2.2.9/sb-1.3.2/sp-2.0.0/datatables.min.js"></script>



  <script src="../JS/reloj.js"></script>

  <script src="../CONTROLTABLAS.JS/FOR-S-CCI-90.js?v=<?php echo time(); ?>"></script>
  <script src="../INPUTS/FOR-S-CCI-90.js?v=<?php echo time(); ?>"></script>

  <script src="../JS/permisos-global.js"></script>

</html>