Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.jinetecosto.php');
require_once('class.filter.php');
require_once('class.page.php');
class JinetesCostos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
if (isset($filter['FechaInicioDesde']) && $filter['FechaInicioDesde'] != '')
{
$sql.= " AND j.FechaInicio >= " . DB::Date($filter['FechaInicioDesde']);
}
if (isset($filter['FechaInicioHasta']) && $filter['FechaInicioHasta'] != '')
{
$sql.= " AND j.FechaInicio <= " . DB::Date($filter['FechaInicioHasta']);
}
return $sql;
}
public function GetPagesCount(Page $oPage, array $filter = NULL)
{
$Count = $this->GetCountRows($filter);
$Count = $Count / $oPage->Size;
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT j.*";
$sql.= " FROM tblJinetesCostos j";
$sql.= " WHERE 1";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY j.FechaInicio";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oJinete = new JineteCosto();
$oJinete->ParseFromArray($oRow);
array_push($arr, $oJinete);
$oRes->MoveNext();
}
return $arr;
}
public function GetByDate($FechaInicio) {
$sql = "SELECT j.*";
$sql.= " FROM tblJinetesCostos j";
$sql.= " WHERE FechaInicio <= " . DB::Date($FechaInicio);
$sql.= " ORDER BY FechaInicio DESC";
$sql.= " LIMIT 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oJinete = new JineteCosto();
$oJinete->ParseFromArray($oRow);
return $oJinete;
}
public function GetById($IdJineteCosto)
{
$sql = "SELECT *";
$sql.= " FROM tblJinetesCostos";
$sql.= " WHERE IdJineteCosto = " . DB::Number($IdJineteCosto);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oJinete = new JineteCosto();
$oJinete->ParseFromArray($oRow);
return $oJinete;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT j.*";
$sql.= " FROM tblJinetesCostos j";
$sql.= " WHERE 1";
if ($filter)
$sql.= $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
protected function GetArrayDB(JineteCosto $oJineteCosto) {
return array
(
'FechaInicio' => empty($oJineteCosto->FechaInicio) ? DB::Date(date('d-m-Y')) : DB::Date($oJineteCosto->FechaInicio),
'CostoEvento' => DB::Number($oJineteCosto->CostoEvento),
'CostoSemestre' => DB::Number($oJineteCosto->CostoSemestre),
'CostoAnual' => DB::Number($oJineteCosto->CostoAnual)
);
}
public function Create(JineteCosto $oJineteCosto)
{
$arr = $this->GetArrayDB($oJineteCosto);
if (!$this->Insert('tblJinetesCostos', $arr))
return false;
/* asignamos el id generado */
$oJineteCosto->IdJineteCosto = DBAccess::GetLastInsertId();
return $oJineteCosto;
}
public function Update(JineteCosto $oJineteCosto)
{
$where = " IdJineteCosto = " . DB::Number($oJineteCosto->IdJineteCosto);
$arr = $this->GetArrayDB($oJineteCosto);
if (!DBAccess::Update('tblJinetesCostos', $arr, $where))
return false;
return $oJineteCosto;
}
public function Delete($IdJineteCosto)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdJineteCosto = " . DB::Number($IdJineteCosto);
if (!DBAccess::Delete('tblJinetesCostos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat