<?php

include "../../../../../lib/mysql/dbconnector.php";
include "../../../../../lib/mysql/conexion01.php";
include "../../../../../lib/mysql/utilidades.php";
include "../../../modelo/ModeloVenta.php";
session_start();
$venta = new ModeloVenta();
// -------------------------------------------------------- INPUT
$in['lineas'] = Utilidades::clear_input($_SESSION['lineas']);
$in['proceso'] = Utilidades::clear_input($_POST['proceso']);
$in['title'] = Utilidades::clear_input($_POST['title']);
// --------------------------------------------------------- DATA
$ou = $venta->getTimerEstructuraListado($in);
echo '<center><h2>' . html_entity_decode($in['title']) . '</h2></center>';
echo '<input type="hidden" class="field_proceso" value="' . $in['proceso'] . '">';
echo '<table width="100%">';
echo '<thead>';
echo '<tr>';
echo '<th>Nro</th>
      <th>Fecha de Creación</th>
      <th>Documento</th>
      <th>Cliente</th>
      <th>Campaña</th>
      <th>Supervisor</th>
      <th>Asesor de Venta</th>
      <th>Acciones</th>
     ';
echo '</tr>';
echo '</thead>';
$i = 1;