require_once 'MECON/HTML/Link.php';
require_once 'MECON/Dependencia.php';
require_once 'MECON/NovedadesDia.php';
-require_once '../../../local_lib/Servicios/Bandas/Agente.php';
+require_once 'BandasNovedades/AgenteBanda.php';
require_once 'HTML/Table.php';
+require_once 'DB.php';
if(!isset($_SESSION['documento']))
{
header('Location: ../../servicios.php');
}
+//CREO LA CONEXION A LA BASE DE DATOS
+$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
+if (DB::isError($dbh)) {
+ die ($DB->getMessage());
+}
+
+//Seteo las variables generales
$nrodoc = $_SESSION['documento'];
setlocale (LC_ALL, 'es_AR');
$fecha = $_POST['fecha'];
$fecha_spliteada = split('-',$fecha);
$mes = strftime("%B", mktime(0,0,0,$fecha_spliteada[1],1,$fecha_spliteada[0]));
-$agente =& new Servicios_Bandas_Agente($nrodoc,new date($fecha));
+
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
if(!$agente->buscarAgente($nrodoc))
{
echo "El agente no está en las bases de RRHH";