Command normalizacion y avance envio de correo a usuario

parent 429891f5
......@@ -170,6 +170,23 @@
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_normalizacion" phpName="McafeeUltimoProcesoNormalizacion" idMethod="native">
<column name="mun_id" phpName="MunId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umc_id" phpName="UltimoUmcId" type="INTEGER" required="false"/>
<column name="mun_cantidad_procesados" phpName="MunCantidadProcesados" type="INTEGER" required="false"/>
<column name="mun_cantidad_pendientes" phpName="MunCantidadPendientes" type="INTEGER" required="false"/>
<column name="created_at" phpName="CreatedAt" type="TIMESTAMP" required="false"/>
<column name="updated_at" phpName="UpdatedAt" type="TIMESTAMP" required="false"/>
<foreign-key foreignTable="usuario_mcafee" name="fk_ultimo_umc_id_normla" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_ultimo_umc_id_normla_idx">
<index-column name="ultimo_umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="notificacion_email" phpName="NotificacionEmail" idMethod="native">
<column name="nem_id" phpName="NemId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="eem_id" phpName="EemId" type="INTEGER" required="false"/>
......@@ -265,6 +282,7 @@
<column name="umc_permite_email" phpName="UmcPermiteEmail" type="BOOLEAN" size="1" required="false" defaultValue="true"/>
<column name="umc_fecha_desuscripcion_email" phpName="UmcFechaDesuscripcionEmail" type="TIMESTAMP" required="false"/>
<column name="umc_movil" phpName="UmcMovil" type="VARCHAR" size="200" required="false"/>
<column name="umc_fijo" phpName="UmcFijo" type="VARCHAR" size="200" required="false"/>
<column name="umc_customer_id" phpName="UmcCustomerId" type="VARCHAR" size="250" required="false"/>
<column name="umc_eliminado" phpName="UmcEliminado" type="BOOLEAN" size="1" required="false"/>
<column name="created_at" phpName="CreatedAt" type="TIMESTAMP" required="false"/>
......
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoNormalizacion;
class McafeeUltimoProcesoNormalizacion extends BaseMcafeeUltimoProcesoNormalizacion
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoNormalizacionPeer;
class McafeeUltimoProcesoNormalizacionPeer extends BaseMcafeeUltimoProcesoNormalizacionPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoNormalizacionQuery;
class McafeeUltimoProcesoNormalizacionQuery extends BaseMcafeeUltimoProcesoNormalizacionQuery
{
}
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'mcafee_ultimo_proceso_normalizacion' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.src.AppBundle.Model.map
*/
class McafeeUltimoProcesoNormalizacionTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.McafeeUltimoProcesoNormalizacionTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('mcafee_ultimo_proceso_normalizacion');
$this->setPhpName('McafeeUltimoProcesoNormalizacion');
$this->setClassname('AppBundle\\Model\\McafeeUltimoProcesoNormalizacion');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('mun_id', 'MunId', 'INTEGER', true, null, null);
$this->addForeignKey('ultimo_umc_id', 'UltimoUmcId', 'INTEGER', 'usuario_mcafee', 'umc_id', false, null, null);
$this->addColumn('mun_cantidad_procesados', 'MunCantidadProcesados', 'INTEGER', false, null, null);
$this->addColumn('mun_cantidad_pendientes', 'MunCantidadPendientes', 'INTEGER', false, null, null);
$this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
$this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
$this->addRelation('UsuarioMcafee', 'AppBundle\\Model\\UsuarioMcafee', RelationMap::MANY_TO_ONE, array('ultimo_umc_id' => 'umc_id', ), null, null);
} // buildRelations()
/**
*
* Gets the list of behaviors registered for this table
*
* @return array Associative array (name => parameters) of behaviors
*/
public function getBehaviors()
{
return array(
'timestampable' => array (
'create_column' => 'created_at',
'update_column' => 'updated_at',
'disable_updated_at' => 'false',
),
);
} // getBehaviors()
} // McafeeUltimoProcesoNormalizacionTableMap
......@@ -58,6 +58,7 @@ class UsuarioMcafeeTableMap extends TableMap
$this->addColumn('umc_permite_email', 'UmcPermiteEmail', 'BOOLEAN', false, 1, true);
$this->addColumn('umc_fecha_desuscripcion_email', 'UmcFechaDesuscripcionEmail', 'TIMESTAMP', false, null, null);
$this->addColumn('umc_movil', 'UmcMovil', 'VARCHAR', false, 200, null);
$this->addColumn('umc_fijo', 'UmcFijo', 'VARCHAR', false, 200, null);
$this->addColumn('umc_customer_id', 'UmcCustomerId', 'VARCHAR', false, 250, null);
$this->addColumn('umc_eliminado', 'UmcEliminado', 'BOOLEAN', false, 1, null);
$this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
......@@ -73,6 +74,7 @@ class UsuarioMcafeeTableMap extends TableMap
$this->addRelation('EnvioEmail', 'AppBundle\\Model\\EnvioEmail', RelationMap::ONE_TO_MANY, array('umc_id' => 'umc_id', ), null, null, 'EnvioEmails');
$this->addRelation('McafeeTransaccion', 'AppBundle\\Model\\McafeeTransaccion', RelationMap::ONE_TO_MANY, array('umc_id' => 'umc_id', ), null, null, 'McafeeTransaccions');
$this->addRelation('McafeeTransaccionPendiente', 'AppBundle\\Model\\McafeeTransaccionPendiente', RelationMap::ONE_TO_MANY, array('umc_id' => 'umc_id', ), null, null, 'McafeeTransaccionPendientes');
$this->addRelation('McafeeUltimoProcesoNormalizacion', 'AppBundle\\Model\\McafeeUltimoProcesoNormalizacion', RelationMap::ONE_TO_MANY, array('umc_id' => 'ultimo_umc_id', ), null, null, 'McafeeUltimoProcesoNormalizacions');
$this->addRelation('Tracking', 'AppBundle\\Model\\Tracking', RelationMap::ONE_TO_MANY, array('umc_id' => 'umc_id', ), null, null, 'Trackings');
} // buildRelations()
......
<?php
namespace AppBundle\Model\om;
use \BaseObject;
use \BasePeer;
use \Criteria;
use \DateTime;
use \Exception;
use \PDO;
use \Persistent;
use \Propel;
use \PropelDateTime;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionPeer;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery;
use AppBundle\Model\UsuarioMcafee;
use AppBundle\Model\UsuarioMcafeeQuery;
abstract class BaseMcafeeUltimoProcesoNormalizacion extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'AppBundle\\Model\\McafeeUltimoProcesoNormalizacionPeer';
/**
* The Peer class.
* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var McafeeUltimoProcesoNormalizacionPeer
*/
protected static $peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected $startCopy = false;
/**
* The value for the mun_id field.
* @var int
*/
protected $mun_id;
/**
* The value for the ultimo_umc_id field.
* @var int
*/
protected $ultimo_umc_id;
/**
* The value for the mun_cantidad_procesados field.
* @var int
*/
protected $mun_cantidad_procesados;
/**
* The value for the mun_cantidad_pendientes field.
* @var int
*/
protected $mun_cantidad_pendientes;
/**
* The value for the created_at field.
* @var string
*/
protected $created_at;
/**
* The value for the updated_at field.
* @var string
*/
protected $updated_at;
/**
* @var UsuarioMcafee
*/
protected $aUsuarioMcafee;
/**
* Flag to prevent endless save loop, if this object is referenced
* by another object which falls in this transaction.
* @var boolean
*/
protected $alreadyInSave = false;
/**
* Flag to prevent endless validation loop, if this object is referenced
* by another object which falls in this transaction.
* @var boolean
*/
protected $alreadyInValidation = false;
/**
* Flag to prevent endless clearAllReferences($deep=true) loop, if this object is referenced
* @var boolean
*/
protected $alreadyInClearAllReferencesDeep = false;
/**
* Get the [mun_id] column value.
*
* @return int
*/
public function getMunId()
{
return $this->mun_id;
}
/**
* Get the [ultimo_umc_id] column value.
*
* @return int
*/
public function getUltimoUmcId()
{
return $this->ultimo_umc_id;
}
/**
* Get the [mun_cantidad_procesados] column value.
*
* @return int
*/
public function getMunCantidadProcesados()
{
return $this->mun_cantidad_procesados;
}
/**
* Get the [mun_cantidad_pendientes] column value.
*
* @return int
*/
public function getMunCantidadPendientes()
{
return $this->mun_cantidad_pendientes;
}
/**
* Get the [optionally formatted] temporal [created_at] column value.
*
*
* @param string $format The date/time format string (either date()-style or strftime()-style).
* If format is null, then the raw DateTime object will be returned.
* @return mixed Formatted date/time value as string or DateTime object (if format is null), null if column is null, and 0 if column value is 0000-00-00 00:00:00
* @throws PropelException - if unable to parse/validate the date/time value.
*/
public function getCreatedAt($format = null)
{
if ($this->created_at === null) {
return null;
}
if ($this->created_at === '0000-00-00 00:00:00') {
// while technically this is not a default value of null,
// this seems to be closest in meaning.
return null;
}
try {
$dt = new DateTime($this->created_at);
} catch (Exception $x) {
throw new PropelException("Internally stored date/time/timestamp value could not be converted to DateTime: " . var_export($this->created_at, true), $x);
}
if ($format === null) {
// Because propel.useDateTimeClass is true, we return a DateTime object.
return $dt;
}
if (strpos($format, '%') !== false) {
return strftime($format, $dt->format('U'));
}
return $dt->format($format);
}
/**
* Get the [optionally formatted] temporal [updated_at] column value.
*
*
* @param string $format The date/time format string (either date()-style or strftime()-style).
* If format is null, then the raw DateTime object will be returned.
* @return mixed Formatted date/time value as string or DateTime object (if format is null), null if column is null, and 0 if column value is 0000-00-00 00:00:00
* @throws PropelException - if unable to parse/validate the date/time value.
*/
public function getUpdatedAt($format = null)
{
if ($this->updated_at === null) {
return null;
}
if ($this->updated_at === '0000-00-00 00:00:00') {
// while technically this is not a default value of null,
// this seems to be closest in meaning.
return null;
}
try {
$dt = new DateTime($this->updated_at);
} catch (Exception $x) {
throw new PropelException("Internally stored date/time/timestamp value could not be converted to DateTime: " . var_export($this->updated_at, true), $x);
}
if ($format === null) {
// Because propel.useDateTimeClass is true, we return a DateTime object.
return $dt;
}
if (strpos($format, '%') !== false) {
return strftime($format, $dt->format('U'));
}
return $dt->format($format);
}
/**
* Set the value of [mun_id] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setMunId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->mun_id !== $v) {
$this->mun_id = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::MUN_ID;
}
return $this;
} // setMunId()
/**
* Set the value of [ultimo_umc_id] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setUltimoUmcId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->ultimo_umc_id !== $v) {
$this->ultimo_umc_id = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID;
}
if ($this->aUsuarioMcafee !== null && $this->aUsuarioMcafee->getUmcId() !== $v) {
$this->aUsuarioMcafee = null;
}
return $this;
} // setUltimoUmcId()
/**
* Set the value of [mun_cantidad_procesados] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setMunCantidadProcesados($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->mun_cantidad_procesados !== $v) {
$this->mun_cantidad_procesados = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS;
}
return $this;
} // setMunCantidadProcesados()
/**
* Set the value of [mun_cantidad_pendientes] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setMunCantidadPendientes($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->mun_cantidad_pendientes !== $v) {
$this->mun_cantidad_pendientes = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES;
}
return $this;
} // setMunCantidadPendientes()
/**
* Sets the value of [created_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setCreatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->created_at !== null || $dt !== null) {
$currentDateAsString = ($this->created_at !== null && $tmpDt = new DateTime($this->created_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->created_at = $newDateAsString;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::CREATED_AT;
}
} // if either are not null
return $this;
} // setCreatedAt()
/**
* Sets the value of [updated_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function setUpdatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->updated_at !== null || $dt !== null) {
$currentDateAsString = ($this->updated_at !== null && $tmpDt = new DateTime($this->updated_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->updated_at = $newDateAsString;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT;
}
} // if either are not null
return $this;
} // setUpdatedAt()
/**
* Indicates whether the columns in this object are only set to default values.
*
* This method can be used in conjunction with isModified() to indicate whether an object is both
* modified _and_ has some values set which are non-default.
*
* @return boolean Whether the columns in this object are only been set with default values.
*/
public function hasOnlyDefaultValues()
{
// otherwise, everything was equal, so return true
return true;
} // hasOnlyDefaultValues()
/**
* Hydrates (populates) the object variables with values from the database resultset.
*
* An offset (0-based "start column") is specified so that objects can be hydrated
* with a subset of the columns in the resultset rows. This is needed, for example,
* for results of JOIN queries where the resultset row includes columns from two or
* more tables.
*
* @param array $row The row returned by PDOStatement->fetch(PDO::FETCH_NUM)
* @param int $startcol 0-based offset column which indicates which resultset column to start with.
* @param boolean $rehydrate Whether this object is being re-hydrated from the database.
* @return int next starting column
* @throws PropelException - Any caught Exception will be rewrapped as a PropelException.
*/
public function hydrate($row, $startcol = 0, $rehydrate = false)
{
try {
$this->mun_id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->ultimo_umc_id = ($row[$startcol + 1] !== null) ? (int) $row[$startcol + 1] : null;
$this->mun_cantidad_procesados = ($row[$startcol + 2] !== null) ? (int) $row[$startcol + 2] : null;
$this->mun_cantidad_pendientes = ($row[$startcol + 3] !== null) ? (int) $row[$startcol + 3] : null;
$this->created_at = ($row[$startcol + 4] !== null) ? (string) $row[$startcol + 4] : null;
$this->updated_at = ($row[$startcol + 5] !== null) ? (string) $row[$startcol + 5] : null;
$this->resetModified();
$this->setNew(false);
if ($rehydrate) {
$this->ensureConsistency();
}
$this->postHydrate($row, $startcol, $rehydrate);
return $startcol + 6; // 6 = McafeeUltimoProcesoNormalizacionPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating McafeeUltimoProcesoNormalizacion object", $e);
}
}
/**
* Checks and repairs the internal consistency of the object.
*
* This method is executed after an already-instantiated object is re-hydrated
* from the database. It exists to check any foreign keys to make sure that
* the objects related to the current object are correct based on foreign key.
*
* You can override this method in the stub class, but you should always invoke
* the base method from the overridden method (i.e. parent::ensureConsistency()),
* in case your model changes.
*
* @throws PropelException
*/
public function ensureConsistency()
{
if ($this->aUsuarioMcafee !== null && $this->ultimo_umc_id !== $this->aUsuarioMcafee->getUmcId()) {
$this->aUsuarioMcafee = null;
}
} // ensureConsistency
/**
* Reloads this object from datastore based on primary key and (optionally) resets all associated objects.
*
* This will only work if the object has been saved and has a valid primary key set.
*
* @param boolean $deep (optional) Whether to also de-associated any related objects.
* @param PropelPDO $con (optional) The PropelPDO connection to use.
* @return void
* @throws PropelException - if this object is deleted, unsaved or doesn't have pk match in db
*/
public function reload($deep = false, PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("Cannot reload a deleted object.");
}
if ($this->isNew()) {
throw new PropelException("Cannot reload an unsaved object.");
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// We don't need to alter the object instance pool; we're just modifying this instance
// already in the pool.
$stmt = McafeeUltimoProcesoNormalizacionPeer::doSelectStmt($this->buildPkeyCriteria(), $con);
$row = $stmt->fetch(PDO::FETCH_NUM);
$stmt->closeCursor();
if (!$row) {
throw new PropelException('Cannot find matching row in the database to reload object values.');
}
$this->hydrate($row, 0, true); // rehydrate
if ($deep) { // also de-associate any related objects?
$this->aUsuarioMcafee = null;
} // if (deep)
}
/**
* Removes this object from datastore and sets delete attribute.
*
* @param PropelPDO $con
* @return void
* @throws PropelException
* @throws Exception
* @see BaseObject::setDeleted()
* @see BaseObject::isDeleted()
*/
public function delete(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("This object has already been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
try {
$deleteQuery = McafeeUltimoProcesoNormalizacionQuery::create()
->filterByPrimaryKey($this->getPrimaryKey());
$ret = $this->preDelete($con);
if ($ret) {
$deleteQuery->delete($con);
$this->postDelete($con);
$con->commit();
$this->setDeleted(true);
} else {
$con->commit();
}
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Persists this object to the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All modified related objects will also be persisted in the doSave()
* method. This method wraps all precipitate database operations in a
* single transaction.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @throws Exception
* @see doSave()
*/
public function save(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("You cannot save an object that has been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
$isInsert = $this->isNew();
try {
$ret = $this->preSave($con);
if ($isInsert) {
$ret = $ret && $this->preInsert($con);
// timestampable behavior
if (!$this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT)) {
$this->setCreatedAt(time());
}
if (!$this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
} else {
$ret = $ret && $this->preUpdate($con);
// timestampable behavior
if ($this->isModified() && !$this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
}
if ($ret) {
$affectedRows = $this->doSave($con);
if ($isInsert) {
$this->postInsert($con);
} else {
$this->postUpdate($con);
}
$this->postSave($con);
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($this);
} else {
$affectedRows = 0;
}
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs the work of inserting or updating the row in the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All related objects are also updated in this method.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @see save()
*/
protected function doSave(PropelPDO $con)
{
$affectedRows = 0; // initialize var to track total num of affected rows
if (!$this->alreadyInSave) {
$this->alreadyInSave = true;
// We call the save method on the following object(s) if they
// were passed to this object by their corresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aUsuarioMcafee !== null) {
if ($this->aUsuarioMcafee->isModified() || $this->aUsuarioMcafee->isNew()) {
$affectedRows += $this->aUsuarioMcafee->save($con);
}
$this->setUsuarioMcafee($this->aUsuarioMcafee);
}
if ($this->isNew() || $this->isModified()) {
// persist changes
if ($this->isNew()) {
$this->doInsert($con);
} else {
$this->doUpdate($con);
}
$affectedRows += 1;
$this->resetModified();
}
$this->alreadyInSave = false;
}
return $affectedRows;
} // doSave()
/**
* Insert the row in the database.
*
* @param PropelPDO $con
*
* @throws PropelException
* @see doSave()
*/
protected function doInsert(PropelPDO $con)
{
$modifiedColumns = array();
$index = 0;
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::MUN_ID;
if (null !== $this->mun_id) {
throw new PropelException('Cannot insert a value for auto-increment primary key (' . McafeeUltimoProcesoNormalizacionPeer::MUN_ID . ')');
}
// check the columns in natural order for more readable SQL queries
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_ID)) {
$modifiedColumns[':p' . $index++] = '`mun_id`';
}
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID)) {
$modifiedColumns[':p' . $index++] = '`ultimo_umc_id`';
}
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS)) {
$modifiedColumns[':p' . $index++] = '`mun_cantidad_procesados`';
}
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES)) {
$modifiedColumns[':p' . $index++] = '`mun_cantidad_pendientes`';
}
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT)) {
$modifiedColumns[':p' . $index++] = '`created_at`';
}
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT)) {
$modifiedColumns[':p' . $index++] = '`updated_at`';
}
$sql = sprintf(
'INSERT INTO `mcafee_ultimo_proceso_normalizacion` (%s) VALUES (%s)',
implode(', ', $modifiedColumns),
implode(', ', array_keys($modifiedColumns))
);
try {
$stmt = $con->prepare($sql);
foreach ($modifiedColumns as $identifier => $columnName) {
switch ($columnName) {
case '`mun_id`':
$stmt->bindValue($identifier, $this->mun_id, PDO::PARAM_INT);
break;
case '`ultimo_umc_id`':
$stmt->bindValue($identifier, $this->ultimo_umc_id, PDO::PARAM_INT);
break;
case '`mun_cantidad_procesados`':
$stmt->bindValue($identifier, $this->mun_cantidad_procesados, PDO::PARAM_INT);
break;
case '`mun_cantidad_pendientes`':
$stmt->bindValue($identifier, $this->mun_cantidad_pendientes, PDO::PARAM_INT);
break;
case '`created_at`':
$stmt->bindValue($identifier, $this->created_at, PDO::PARAM_STR);
break;
case '`updated_at`':
$stmt->bindValue($identifier, $this->updated_at, PDO::PARAM_STR);
break;
}
}
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute INSERT statement [%s]', $sql), $e);
}
try {
$pk = $con->lastInsertId();
} catch (Exception $e) {
throw new PropelException('Unable to get autoincrement id.', $e);
}
$this->setMunId($pk);
$this->setNew(false);
}
/**
* Update the row in the database.
*
* @param PropelPDO $con
*
* @see doSave()
*/
protected function doUpdate(PropelPDO $con)
{
$selectCriteria = $this->buildPkeyCriteria();
$valuesCriteria = $this->buildCriteria();
BasePeer::doUpdate($selectCriteria, $valuesCriteria, $con);
}
/**
* Array of ValidationFailed objects.
* @var array ValidationFailed[]
*/
protected $validationFailures = array();
/**
* Gets any ValidationFailed objects that resulted from last call to validate().
*
*
* @return array ValidationFailed[]
* @see validate()
*/
public function getValidationFailures()
{
return $this->validationFailures;
}
/**
* Validates the objects modified field values and all objects related to this table.
*
* If $columns is either a column name or an array of column names
* only those columns are validated.
*
* @param mixed $columns Column name or an array of column names.
* @return boolean Whether all columns pass validation.
* @see doValidate()
* @see getValidationFailures()
*/
public function validate($columns = null)
{
$res = $this->doValidate($columns);
if ($res === true) {
$this->validationFailures = array();
return true;
}
$this->validationFailures = $res;
return false;
}
/**
* This function performs the validation work for complex object models.
*
* In addition to checking the current object, all related objects will
* also be validated. If all pass then <code>true</code> is returned; otherwise
* an aggregated array of ValidationFailed objects will be returned.
*
* @param array $columns Array of column names to validate.
* @return mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objects otherwise.
*/
protected function doValidate($columns = null)
{
if (!$this->alreadyInValidation) {
$this->alreadyInValidation = true;
$retval = null;
$failureMap = array();
// We call the validate method on the following object(s) if they
// were passed to this object by their corresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aUsuarioMcafee !== null) {
if (!$this->aUsuarioMcafee->validate($columns)) {
$failureMap = array_merge($failureMap, $this->aUsuarioMcafee->getValidationFailures());
}
}
if (($retval = McafeeUltimoProcesoNormalizacionPeer::doValidate($this, $columns)) !== true) {
$failureMap = array_merge($failureMap, $retval);
}
$this->alreadyInValidation = false;
}
return (!empty($failureMap) ? $failureMap : true);
}
/**
* Retrieves a field from the object by name passed in as a string.
*
* @param string $name name
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return mixed Value of field.
*/
public function getByName($name, $type = BasePeer::TYPE_PHPNAME)
{
$pos = McafeeUltimoProcesoNormalizacionPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$field = $this->getByPosition($pos);
return $field;
}
/**
* Retrieves a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @return mixed Value of field at $pos
*/
public function getByPosition($pos)
{
switch ($pos) {
case 0:
return $this->getMunId();
break;
case 1:
return $this->getUltimoUmcId();
break;
case 2:
return $this->getMunCantidadProcesados();
break;
case 3:
return $this->getMunCantidadPendientes();
break;
case 4:
return $this->getCreatedAt();
break;
case 5:
return $this->getUpdatedAt();
break;
default:
return null;
break;
} // switch()
}
/**
* Exports the object as an array.
*
* You can specify the key type of the array by passing one of the class
* type constants.
*
* @param string $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME.
* @param boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to true.
* @param array $alreadyDumpedObjects List of objects to skip to avoid recursion
* @param boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
*
* @return array an associative array containing the field names (as keys) and field values
*/
public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
{
if (isset($alreadyDumpedObjects['McafeeUltimoProcesoNormalizacion'][$this->getPrimaryKey()])) {
return '*RECURSION*';
}
$alreadyDumpedObjects['McafeeUltimoProcesoNormalizacion'][$this->getPrimaryKey()] = true;
$keys = McafeeUltimoProcesoNormalizacionPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getMunId(),
$keys[1] => $this->getUltimoUmcId(),
$keys[2] => $this->getMunCantidadProcesados(),
$keys[3] => $this->getMunCantidadPendientes(),
$keys[4] => $this->getCreatedAt(),
$keys[5] => $this->getUpdatedAt(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
$result[$key] = $virtualColumn;
}
if ($includeForeignObjects) {
if (null !== $this->aUsuarioMcafee) {
$result['UsuarioMcafee'] = $this->aUsuarioMcafee->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
}
}
return $result;
}
/**
* Sets a field from the object by name passed in as a string.
*
* @param string $name peer name
* @param mixed $value field value
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return void
*/
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
{
$pos = McafeeUltimoProcesoNormalizacionPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$this->setByPosition($pos, $value);
}
/**
* Sets a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @param mixed $value field value
* @return void
*/
public function setByPosition($pos, $value)
{
switch ($pos) {
case 0:
$this->setMunId($value);
break;
case 1:
$this->setUltimoUmcId($value);
break;
case 2:
$this->setMunCantidadProcesados($value);
break;
case 3:
$this->setMunCantidadPendientes($value);
break;
case 4:
$this->setCreatedAt($value);
break;
case 5:
$this->setUpdatedAt($value);
break;
} // switch()
}
/**
* Populates the object using an array.
*
* This is particularly useful when populating an object from one of the
* request arrays (e.g. $_POST). This method goes through the column
* names, checking to see whether a matching key exists in populated
* array. If so the setByName() method is called for that column.
*
* You can specify the key type of the array by additionally passing one
* of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* The default key type is the column's BasePeer::TYPE_PHPNAME
*
* @param array $arr An array to populate the object from.
* @param string $keyType The type of keys the array uses.
* @return void
*/
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
{
$keys = McafeeUltimoProcesoNormalizacionPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setMunId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setUltimoUmcId($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setMunCantidadProcesados($arr[$keys[2]]);
if (array_key_exists($keys[3], $arr)) $this->setMunCantidadPendientes($arr[$keys[3]]);
if (array_key_exists($keys[4], $arr)) $this->setCreatedAt($arr[$keys[4]]);
if (array_key_exists($keys[5], $arr)) $this->setUpdatedAt($arr[$keys[5]]);
}
/**
* Build a Criteria object containing the values of all modified columns in this object.
*
* @return Criteria The Criteria object containing all modified values.
*/
public function buildCriteria()
{
$criteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_ID)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $this->mun_id);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $this->ultimo_umc_id);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS, $this->mun_cantidad_procesados);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES, $this->mun_cantidad_pendientes);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, $this->created_at);
if ($this->isColumnModified(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT)) $criteria->add(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, $this->updated_at);
return $criteria;
}
/**
* Builds a Criteria object containing the primary key for this object.
*
* Unlike buildCriteria() this method includes the primary key values regardless
* of whether or not they have been modified.
*
* @return Criteria The Criteria object containing value(s) for primary key(s).
*/
public function buildPkeyCriteria()
{
$criteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $this->mun_id);
return $criteria;
}
/**
* Returns the primary key for this object (row).
* @return int
*/
public function getPrimaryKey()
{
return $this->getMunId();
}
/**
* Generic method to set the primary key (mun_id column).
*
* @param int $key Primary key.
* @return void
*/
public function setPrimaryKey($key)
{
$this->setMunId($key);
}
/**
* Returns true if the primary key for this object is null.
* @return boolean
*/
public function isPrimaryKeyNull()
{
return null === $this->getMunId();
}
/**
* Sets contents of passed object to values from current object.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param object $copyObj An object of McafeeUltimoProcesoNormalizacion (or compatible) type.
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
* @throws PropelException
*/
public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
{
$copyObj->setUltimoUmcId($this->getUltimoUmcId());
$copyObj->setMunCantidadProcesados($this->getMunCantidadProcesados());
$copyObj->setMunCantidadPendientes($this->getMunCantidadPendientes());
$copyObj->setCreatedAt($this->getCreatedAt());
$copyObj->setUpdatedAt($this->getUpdatedAt());
if ($deepCopy && !$this->startCopy) {
// important: temporarily setNew(false) because this affects the behavior of
// the getter/setter methods for fkey referrer objects.
$copyObj->setNew(false);
// store object hash to prevent cycle
$this->startCopy = true;
//unflag object copy
$this->startCopy = false;
} // if ($deepCopy)
if ($makeNew) {
$copyObj->setNew(true);
$copyObj->setMunId(NULL); // this is a auto-increment column, so set to default value
}
}
/**
* Makes a copy of this object that will be inserted as a new row in table when saved.
* It creates a new object filling in the simple attributes, but skipping any primary
* keys that are defined for the table.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @return McafeeUltimoProcesoNormalizacion Clone of current object.
* @throws PropelException
*/
public function copy($deepCopy = false)
{
// we use get_class(), because this might be a subclass
$clazz = get_class($this);
$copyObj = new $clazz();
$this->copyInto($copyObj, $deepCopy);
return $copyObj;
}
/**
* Returns a peer instance associated with this om.
*
* Since Peer classes are not to have any instance attributes, this method returns the
* same instance for all member of this class. The method could therefore
* be static, but this would prevent one from overriding the behavior.
*
* @return McafeeUltimoProcesoNormalizacionPeer
*/
public function getPeer()
{
if (self::$peer === null) {
self::$peer = new McafeeUltimoProcesoNormalizacionPeer();
}
return self::$peer;
}
/**
* Declares an association between this object and a UsuarioMcafee object.
*
* @param UsuarioMcafee $v
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
* @throws PropelException
*/
public function setUsuarioMcafee(UsuarioMcafee $v = null)
{
if ($v === null) {
$this->setUltimoUmcId(NULL);
} else {
$this->setUltimoUmcId($v->getUmcId());
}
$this->aUsuarioMcafee = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the UsuarioMcafee object, it will not be re-added.
if ($v !== null) {
$v->addMcafeeUltimoProcesoNormalizacion($this);
}
return $this;
}
/**
* Get the associated UsuarioMcafee object
*
* @param PropelPDO $con Optional Connection object.
* @param $doQuery Executes a query to get the object if required
* @return UsuarioMcafee The associated UsuarioMcafee object.
* @throws PropelException
*/
public function getUsuarioMcafee(PropelPDO $con = null, $doQuery = true)
{
if ($this->aUsuarioMcafee === null && ($this->ultimo_umc_id !== null) && $doQuery) {
$this->aUsuarioMcafee = UsuarioMcafeeQuery::create()->findPk($this->ultimo_umc_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aUsuarioMcafee->addMcafeeUltimoProcesoNormalizacions($this);
*/
}
return $this->aUsuarioMcafee;
}
/**
* Clears the current object and sets all attributes to their default values
*/
public function clear()
{
$this->mun_id = null;
$this->ultimo_umc_id = null;
$this->mun_cantidad_procesados = null;
$this->mun_cantidad_pendientes = null;
$this->created_at = null;
$this->updated_at = null;
$this->alreadyInSave = false;
$this->alreadyInValidation = false;
$this->alreadyInClearAllReferencesDeep = false;
$this->clearAllReferences();
$this->resetModified();
$this->setNew(true);
$this->setDeleted(false);
}
/**
* Resets all references to other model objects or collections of model objects.
*
* This method is a user-space workaround for PHP's inability to garbage collect
* objects with circular references (even in PHP 5.3). This is currently necessary
* when using Propel in certain daemon or large-volume/high-memory operations.
*
* @param boolean $deep Whether to also clear the references on all referrer objects.
*/
public function clearAllReferences($deep = false)
{
if ($deep && !$this->alreadyInClearAllReferencesDeep) {
$this->alreadyInClearAllReferencesDeep = true;
if ($this->aUsuarioMcafee instanceof Persistent) {
$this->aUsuarioMcafee->clearAllReferences($deep);
}
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
$this->aUsuarioMcafee = null;
}
/**
* return the string representation of this object
*
* @return string
*/
public function __toString()
{
return (string) $this->exportTo(McafeeUltimoProcesoNormalizacionPeer::DEFAULT_STRING_FORMAT);
}
/**
* return true is the object is in saving state
*
* @return boolean
*/
public function isAlreadyInSave()
{
return $this->alreadyInSave;
}
// timestampable behavior
/**
* Mark the current object so that the update date doesn't get updated during next save
*
* @return McafeeUltimoProcesoNormalizacion The current object (for fluent API support)
*/
public function keepUpdateDateUnchanged()
{
$this->modifiedColumns[] = McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT;
return $this;
}
}
<?php
namespace AppBundle\Model\om;
use \BasePeer;
use \Criteria;
use \PDO;
use \PDOStatement;
use \Propel;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionPeer;
use AppBundle\Model\UsuarioMcafeePeer;
use AppBundle\Model\map\McafeeUltimoProcesoNormalizacionTableMap;
abstract class BaseMcafeeUltimoProcesoNormalizacionPeer
{
/** the default database name for this class */
const DATABASE_NAME = 'default';
/** the table name for this class */
const TABLE_NAME = 'mcafee_ultimo_proceso_normalizacion';
/** the related Propel class for this table */
const OM_CLASS = 'AppBundle\\Model\\McafeeUltimoProcesoNormalizacion';
/** the related TableMap class for this table */
const TM_CLASS = 'AppBundle\\Model\\map\\McafeeUltimoProcesoNormalizacionTableMap';
/** The total number of columns. */
const NUM_COLUMNS = 6;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
const NUM_HYDRATE_COLUMNS = 6;
/** the column name for the mun_id field */
const MUN_ID = 'mcafee_ultimo_proceso_normalizacion.mun_id';
/** the column name for the ultimo_umc_id field */
const ULTIMO_UMC_ID = 'mcafee_ultimo_proceso_normalizacion.ultimo_umc_id';
/** the column name for the mun_cantidad_procesados field */
const MUN_CANTIDAD_PROCESADOS = 'mcafee_ultimo_proceso_normalizacion.mun_cantidad_procesados';
/** the column name for the mun_cantidad_pendientes field */
const MUN_CANTIDAD_PENDIENTES = 'mcafee_ultimo_proceso_normalizacion.mun_cantidad_pendientes';
/** the column name for the created_at field */
const CREATED_AT = 'mcafee_ultimo_proceso_normalizacion.created_at';
/** the column name for the updated_at field */
const UPDATED_AT = 'mcafee_ultimo_proceso_normalizacion.updated_at';
/** The default string format for model objects of the related table **/
const DEFAULT_STRING_FORMAT = 'YAML';
/**
* An identity map to hold any loaded instances of McafeeUltimoProcesoNormalizacion objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* queries.
* @var array McafeeUltimoProcesoNormalizacion[]
*/
public static $instances = array();
/**
* holds an array of fieldnames
*
* first dimension keys are the type constants
* e.g. McafeeUltimoProcesoNormalizacionPeer::$fieldNames[McafeeUltimoProcesoNormalizacionPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('MunId', 'UltimoUmcId', 'MunCantidadProcesados', 'MunCantidadPendientes', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('munId', 'ultimoUmcId', 'munCantidadProcesados', 'munCantidadPendientes', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (McafeeUltimoProcesoNormalizacionPeer::MUN_ID, McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS, McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES, McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('MUN_ID', 'ULTIMO_UMC_ID', 'MUN_CANTIDAD_PROCESADOS', 'MUN_CANTIDAD_PENDIENTES', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('mun_id', 'ultimo_umc_id', 'mun_cantidad_procesados', 'mun_cantidad_pendientes', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, )
);
/**
* holds an array of keys for quick access to the fieldnames array
*
* first dimension keys are the type constants
* e.g. McafeeUltimoProcesoNormalizacionPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('MunId' => 0, 'UltimoUmcId' => 1, 'MunCantidadProcesados' => 2, 'MunCantidadPendientes' => 3, 'CreatedAt' => 4, 'UpdatedAt' => 5, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('munId' => 0, 'ultimoUmcId' => 1, 'munCantidadProcesados' => 2, 'munCantidadPendientes' => 3, 'createdAt' => 4, 'updatedAt' => 5, ),
BasePeer::TYPE_COLNAME => array (McafeeUltimoProcesoNormalizacionPeer::MUN_ID => 0, McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID => 1, McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS => 2, McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES => 3, McafeeUltimoProcesoNormalizacionPeer::CREATED_AT => 4, McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT => 5, ),
BasePeer::TYPE_RAW_COLNAME => array ('MUN_ID' => 0, 'ULTIMO_UMC_ID' => 1, 'MUN_CANTIDAD_PROCESADOS' => 2, 'MUN_CANTIDAD_PENDIENTES' => 3, 'CREATED_AT' => 4, 'UPDATED_AT' => 5, ),
BasePeer::TYPE_FIELDNAME => array ('mun_id' => 0, 'ultimo_umc_id' => 1, 'mun_cantidad_procesados' => 2, 'mun_cantidad_pendientes' => 3, 'created_at' => 4, 'updated_at' => 5, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, )
);
/**
* Translates a fieldname to another type
*
* @param string $name field name
* @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @param string $toType One of the class type constants
* @return string translated name of the field.
* @throws PropelException - if the specified name could not be found in the fieldname mappings.
*/
public static function translateFieldName($name, $fromType, $toType)
{
$toNames = McafeeUltimoProcesoNormalizacionPeer::getFieldNames($toType);
$key = isset(McafeeUltimoProcesoNormalizacionPeer::$fieldKeys[$fromType][$name]) ? McafeeUltimoProcesoNormalizacionPeer::$fieldKeys[$fromType][$name] : null;
if ($key === null) {
throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(McafeeUltimoProcesoNormalizacionPeer::$fieldKeys[$fromType], true));
}
return $toNames[$key];
}
/**
* Returns an array of field names.
*
* @param string $type The type of fieldnames to return:
* One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @return array A list of field names
* @throws PropelException - if the type is not valid.
*/
public static function getFieldNames($type = BasePeer::TYPE_PHPNAME)
{
if (!array_key_exists($type, McafeeUltimoProcesoNormalizacionPeer::$fieldNames)) {
throw new PropelException('Method getFieldNames() expects the parameter $type to be one of the class constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. ' . $type . ' was given.');
}
return McafeeUltimoProcesoNormalizacionPeer::$fieldNames[$type];
}
/**
* Convenience method which changes table.column to alias.column.
*
* Using this method you can maintain SQL abstraction while using column aliases.
* <code>
* $c->addAlias("alias1", TablePeer::TABLE_NAME);
* $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
* </code>
* @param string $alias The alias for the current table.
* @param string $column The column name for current table. (i.e. McafeeUltimoProcesoNormalizacionPeer::COLUMN_NAME).
* @return string
*/
public static function alias($alias, $column)
{
return str_replace(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME.'.', $alias.'.', $column);
}
/**
* Add all the columns needed to create a new object.
*
* Note: any columns that were marked with lazyLoad="true" in the
* XML schema will not be added to the select list and only loaded
* on demand.
*
* @param Criteria $criteria object containing the columns to add.
* @param string $alias optional table alias
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function addSelectColumns(Criteria $criteria, $alias = null)
{
if (null === $alias) {
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::MUN_ID);
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID);
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS);
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES);
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT);
$criteria->addSelectColumn(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT);
} else {
$criteria->addSelectColumn($alias . '.mun_id');
$criteria->addSelectColumn($alias . '.ultimo_umc_id');
$criteria->addSelectColumn($alias . '.mun_cantidad_procesados');
$criteria->addSelectColumn($alias . '.mun_cantidad_pendientes');
$criteria->addSelectColumn($alias . '.created_at');
$criteria->addSelectColumn($alias . '.updated_at');
}
}
/**
* Returns the number of rows matching criteria.
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @return int Number of matching rows.
*/
public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
{
// we may modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME); // Set the correct dbName
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// BasePeer returns a PDOStatement
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects one object from the DB.
*
* @param Criteria $criteria object used to create the SELECT statement.
* @param PropelPDO $con
* @return McafeeUltimoProcesoNormalizacion
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
{
$critcopy = clone $criteria;
$critcopy->setLimit(1);
$objects = McafeeUltimoProcesoNormalizacionPeer::doSelect($critcopy, $con);
if ($objects) {
return $objects[0];
}
return null;
}
/**
* Selects several row from the DB.
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con
* @return array Array of selected Objects
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelect(Criteria $criteria, PropelPDO $con = null)
{
return McafeeUltimoProcesoNormalizacionPeer::populateObjects(McafeeUltimoProcesoNormalizacionPeer::doSelectStmt($criteria, $con));
}
/**
* Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
*
* Use this method directly if you want to work with an executed statement directly (for example
* to perform your own object hydration).
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con The connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return PDOStatement The executed PDOStatement object.
* @see BasePeer::doSelect()
*/
public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
// BasePeer returns a PDOStatement
return BasePeer::doSelect($criteria, $con);
}
/**
* Adds an object to the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
*
* @param McafeeUltimoProcesoNormalizacion $obj A McafeeUltimoProcesoNormalizacion object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
*/
public static function addInstanceToPool($obj, $key = null)
{
if (Propel::isInstancePoolingEnabled()) {
if ($key === null) {
$key = (string) $obj->getMunId();
} // if key === null
McafeeUltimoProcesoNormalizacionPeer::$instances[$key] = $obj;
}
}
/**
* Removes an object from the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doDelete
* methods in your stub classes -- you may need to explicitly remove objects
* from the cache in order to prevent returning objects that no longer exist.
*
* @param mixed $value A McafeeUltimoProcesoNormalizacion object or a primary key value.
*
* @return void
* @throws PropelException - if the value is invalid.
*/
public static function removeInstanceFromPool($value)
{
if (Propel::isInstancePoolingEnabled() && $value !== null) {
if (is_object($value) && $value instanceof McafeeUltimoProcesoNormalizacion) {
$key = (string) $value->getMunId();
} elseif (is_scalar($value)) {
// assume we've been passed a primary key
$key = (string) $value;
} else {
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or McafeeUltimoProcesoNormalizacion object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
throw $e;
}
unset(McafeeUltimoProcesoNormalizacionPeer::$instances[$key]);
}
} // removeInstanceFromPool()
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param string $key The key (@see getPrimaryKeyHash()) for this instance.
* @return McafeeUltimoProcesoNormalizacion Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
* @see getPrimaryKeyHash()
*/
public static function getInstanceFromPool($key)
{
if (Propel::isInstancePoolingEnabled()) {
if (isset(McafeeUltimoProcesoNormalizacionPeer::$instances[$key])) {
return McafeeUltimoProcesoNormalizacionPeer::$instances[$key];
}
}
return null; // just to be explicit
}
/**
* Clear the instance pool.
*
* @return void
*/
public static function clearInstancePool($and_clear_all_references = false)
{
if ($and_clear_all_references) {
foreach (McafeeUltimoProcesoNormalizacionPeer::$instances as $instance) {
$instance->clearAllReferences(true);
}
}
McafeeUltimoProcesoNormalizacionPeer::$instances = array();
}
/**
* Method to invalidate the instance pool of all tables related to mcafee_ultimo_proceso_normalizacion
* by a foreign key with ON DELETE CASCADE
*/
public static function clearRelatedInstancePool()
{
}
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return string A string version of PK or null if the components of primary key in result array are all null.
*/
public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
{
// If the PK cannot be derived from the row, return null.
if ($row[$startcol] === null) {
return null;
}
return (string) $row[$startcol];
}
/**
* Retrieves the primary key from the DB resultset row
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, an array of the primary key columns will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return mixed The primary key of the row
*/
public static function getPrimaryKeyFromRow($row, $startcol = 0)
{
return (int) $row[$startcol];
}
/**
* The returned array will contain objects of the default type or
* objects that inherit from the default.
*
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function populateObjects(PDOStatement $stmt)
{
$results = array();
// set the class once to avoid overhead in the loop
$cls = McafeeUltimoProcesoNormalizacionPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = McafeeUltimoProcesoNormalizacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, 0, true); // rehydrate
$results[] = $obj;
} else {
$obj = new $cls();
$obj->hydrate($row);
$results[] = $obj;
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($obj, $key);
} // if key exists
}
$stmt->closeCursor();
return $results;
}
/**
* Populates an object of the default type or an object that inherit from the default.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return array (McafeeUltimoProcesoNormalizacion object, last column rank)
*/
public static function populateObject($row, $startcol = 0)
{
$key = McafeeUltimoProcesoNormalizacionPeer::getPrimaryKeyHashFromRow($row, $startcol);
if (null !== ($obj = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, $startcol, true); // rehydrate
$col = $startcol + McafeeUltimoProcesoNormalizacionPeer::NUM_HYDRATE_COLUMNS;
} else {
$cls = McafeeUltimoProcesoNormalizacionPeer::OM_CLASS;
$obj = new $cls();
$col = $obj->hydrate($row, $startcol);
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($obj, $key);
}
return array($obj, $col);
}
/**
* Returns the number of rows matching criteria, joining the related UsuarioMcafee table
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
*/
public static function doCountJoinUsuarioMcafee(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, UsuarioMcafeePeer::UMC_ID, $join_behavior);
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects a collection of McafeeUltimoProcesoNormalizacion objects pre-filled with their UsuarioMcafee objects.
* @param Criteria $criteria
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of McafeeUltimoProcesoNormalizacion objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinUsuarioMcafee(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
}
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
$startcol = McafeeUltimoProcesoNormalizacionPeer::NUM_HYDRATE_COLUMNS;
UsuarioMcafeePeer::addSelectColumns($criteria);
$criteria->addJoin(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, UsuarioMcafeePeer::UMC_ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = McafeeUltimoProcesoNormalizacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$cls = McafeeUltimoProcesoNormalizacionPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($obj1, $key1);
} // if $obj1 already loaded
$key2 = UsuarioMcafeePeer::getPrimaryKeyHashFromRow($row, $startcol);
if ($key2 !== null) {
$obj2 = UsuarioMcafeePeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuarioMcafeePeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol);
UsuarioMcafeePeer::addInstanceToPool($obj2, $key2);
} // if obj2 already loaded
// Add the $obj1 (McafeeUltimoProcesoNormalizacion) to $obj2 (UsuarioMcafee)
$obj2->addMcafeeUltimoProcesoNormalizacion($obj1);
} // if joined row was not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
/**
* Returns the number of rows matching criteria, joining all related tables
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
*/
public static function doCountJoinAll(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, UsuarioMcafeePeer::UMC_ID, $join_behavior);
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects a collection of McafeeUltimoProcesoNormalizacion objects pre-filled with all related objects.
*
* @param Criteria $criteria
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of McafeeUltimoProcesoNormalizacion objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
}
McafeeUltimoProcesoNormalizacionPeer::addSelectColumns($criteria);
$startcol2 = McafeeUltimoProcesoNormalizacionPeer::NUM_HYDRATE_COLUMNS;
UsuarioMcafeePeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + UsuarioMcafeePeer::NUM_HYDRATE_COLUMNS;
$criteria->addJoin(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, UsuarioMcafeePeer::UMC_ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = McafeeUltimoProcesoNormalizacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$cls = McafeeUltimoProcesoNormalizacionPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($obj1, $key1);
} // if obj1 already loaded
// Add objects for joined UsuarioMcafee rows
$key2 = UsuarioMcafeePeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = UsuarioMcafeePeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuarioMcafeePeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
UsuarioMcafeePeer::addInstanceToPool($obj2, $key2);
} // if obj2 loaded
// Add the $obj1 (McafeeUltimoProcesoNormalizacion) to the collection in $obj2 (UsuarioMcafee)
$obj2->addMcafeeUltimoProcesoNormalizacion($obj1);
} // if joined row not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
/**
* Returns the TableMap related to this peer.
* This method is not needed for general use but a specific application could have a need.
* @return TableMap
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function getTableMap()
{
return Propel::getDatabaseMap(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME)->getTable(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
}
/**
* Add a TableMap instance to the database for this peer class.
*/
public static function buildTableMap()
{
$dbMap = Propel::getDatabaseMap(BaseMcafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
if (!$dbMap->hasTable(BaseMcafeeUltimoProcesoNormalizacionPeer::TABLE_NAME)) {
$dbMap->addTableObject(new \AppBundle\Model\map\McafeeUltimoProcesoNormalizacionTableMap());
}
}
/**
* The class that the Peer will make instances of.
*
*
* @return string ClassName
*/
public static function getOMClass($row = 0, $colnum = 0)
{
return McafeeUltimoProcesoNormalizacionPeer::OM_CLASS;
}
/**
* Performs an INSERT on the database, given a McafeeUltimoProcesoNormalizacion or Criteria object.
*
* @param mixed $values Criteria or McafeeUltimoProcesoNormalizacion object containing data that is used to create the INSERT statement.
* @param PropelPDO $con the PropelPDO connection to use
* @return mixed The new primary key.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doInsert($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else {
$criteria = $values->buildCriteria(); // build Criteria from McafeeUltimoProcesoNormalizacion object
}
if ($criteria->containsKey(McafeeUltimoProcesoNormalizacionPeer::MUN_ID) && $criteria->keyContainsValue(McafeeUltimoProcesoNormalizacionPeer::MUN_ID) ) {
throw new PropelException('Cannot insert a value for auto-increment primary key ('.McafeeUltimoProcesoNormalizacionPeer::MUN_ID.')');
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
try {
// use transaction because $criteria could contain info
// for more than one table (I guess, conceivably)
$con->beginTransaction();
$pk = BasePeer::doInsert($criteria, $con);
$con->commit();
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
return $pk;
}
/**
* Performs an UPDATE on the database, given a McafeeUltimoProcesoNormalizacion or Criteria object.
*
* @param mixed $values Criteria or McafeeUltimoProcesoNormalizacion object containing data that is used to create the UPDATE statement.
* @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doUpdate($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$selectCriteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(McafeeUltimoProcesoNormalizacionPeer::MUN_ID);
$value = $criteria->remove(McafeeUltimoProcesoNormalizacionPeer::MUN_ID);
if ($value) {
$selectCriteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $value, $comparison);
} else {
$selectCriteria->setPrimaryTableName(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
}
} else { // $values is McafeeUltimoProcesoNormalizacion object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
}
// set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
}
/**
* Deletes all rows from the mcafee_ultimo_proceso_normalizacion table.
*
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException
*/
public static function doDeleteAll(PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDeleteAll(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME, $con, McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
// Because this db requires some delete cascade/set null emulation, we have to
// clear the cached instance *after* the emulation has happened (since
// instances get re-added by the select statement contained therein).
McafeeUltimoProcesoNormalizacionPeer::clearInstancePool();
McafeeUltimoProcesoNormalizacionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs a DELETE on the database, given a McafeeUltimoProcesoNormalizacion or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or McafeeUltimoProcesoNormalizacion object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doDelete($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
// invalidate the cache for all objects of this type, since we have no
// way of knowing (without running a query) what objects should be invalidated
// from the cache based on this Criteria.
McafeeUltimoProcesoNormalizacionPeer::clearInstancePool();
// rename for clarity
$criteria = clone $values;
} elseif ($values instanceof McafeeUltimoProcesoNormalizacion) { // it's a model object
// invalidate the cache for this single object
McafeeUltimoProcesoNormalizacionPeer::removeInstanceFromPool($values);
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
} else { // it's a primary key, or an array of pks
$criteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, (array) $values, Criteria::IN);
// invalidate the cache for this object(s)
foreach ((array) $values as $singleval) {
McafeeUltimoProcesoNormalizacionPeer::removeInstanceFromPool($singleval);
}
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDelete($criteria, $con);
McafeeUltimoProcesoNormalizacionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Validates all modified columns of given McafeeUltimoProcesoNormalizacion object.
* If parameter $columns is either a single column name or an array of column names
* than only those columns are validated.
*
* NOTICE: This does not apply to primary or foreign keys for now.
*
* @param McafeeUltimoProcesoNormalizacion $obj The object to validate.
* @param mixed $cols Column name or array of column names.
*
* @return mixed TRUE if all columns are valid or the error message of the first invalid column.
*/
public static function doValidate($obj, $cols = null)
{
$columns = array();
if ($cols) {
$dbMap = Propel::getDatabaseMap(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME);
if (! is_array($cols)) {
$cols = array($cols);
}
foreach ($cols as $colName) {
if ($tableMap->hasColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
}
}
} else {
}
return BasePeer::doValidate(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, McafeeUltimoProcesoNormalizacionPeer::TABLE_NAME, $columns);
}
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return McafeeUltimoProcesoNormalizacion
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $pk);
$v = McafeeUltimoProcesoNormalizacionPeer::doSelect($criteria, $con);
return !empty($v) > 0 ? $v[0] : null;
}
/**
* Retrieve multiple objects by pkey.
*
* @param array $pks List of primary keys
* @param PropelPDO $con the connection to use
* @return McafeeUltimoProcesoNormalizacion[]
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function retrieveByPKs($pks, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$objs = null;
if (empty($pks)) {
$objs = array();
} else {
$criteria = new Criteria(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $pks, Criteria::IN);
$objs = McafeeUltimoProcesoNormalizacionPeer::doSelect($criteria, $con);
}
return $objs;
}
} // BaseMcafeeUltimoProcesoNormalizacionPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseMcafeeUltimoProcesoNormalizacionPeer::buildTableMap();
<?php
namespace AppBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \ModelJoin;
use \PDO;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionPeer;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery;
use AppBundle\Model\UsuarioMcafee;
/**
* @method McafeeUltimoProcesoNormalizacionQuery orderByMunId($order = Criteria::ASC) Order by the mun_id column
* @method McafeeUltimoProcesoNormalizacionQuery orderByUltimoUmcId($order = Criteria::ASC) Order by the ultimo_umc_id column
* @method McafeeUltimoProcesoNormalizacionQuery orderByMunCantidadProcesados($order = Criteria::ASC) Order by the mun_cantidad_procesados column
* @method McafeeUltimoProcesoNormalizacionQuery orderByMunCantidadPendientes($order = Criteria::ASC) Order by the mun_cantidad_pendientes column
* @method McafeeUltimoProcesoNormalizacionQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method McafeeUltimoProcesoNormalizacionQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method McafeeUltimoProcesoNormalizacionQuery groupByMunId() Group by the mun_id column
* @method McafeeUltimoProcesoNormalizacionQuery groupByUltimoUmcId() Group by the ultimo_umc_id column
* @method McafeeUltimoProcesoNormalizacionQuery groupByMunCantidadProcesados() Group by the mun_cantidad_procesados column
* @method McafeeUltimoProcesoNormalizacionQuery groupByMunCantidadPendientes() Group by the mun_cantidad_pendientes column
* @method McafeeUltimoProcesoNormalizacionQuery groupByCreatedAt() Group by the created_at column
* @method McafeeUltimoProcesoNormalizacionQuery groupByUpdatedAt() Group by the updated_at column
*
* @method McafeeUltimoProcesoNormalizacionQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method McafeeUltimoProcesoNormalizacionQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method McafeeUltimoProcesoNormalizacionQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method McafeeUltimoProcesoNormalizacionQuery leftJoinUsuarioMcafee($relationAlias = null) Adds a LEFT JOIN clause to the query using the UsuarioMcafee relation
* @method McafeeUltimoProcesoNormalizacionQuery rightJoinUsuarioMcafee($relationAlias = null) Adds a RIGHT JOIN clause to the query using the UsuarioMcafee relation
* @method McafeeUltimoProcesoNormalizacionQuery innerJoinUsuarioMcafee($relationAlias = null) Adds a INNER JOIN clause to the query using the UsuarioMcafee relation
*
* @method McafeeUltimoProcesoNormalizacion findOne(PropelPDO $con = null) Return the first McafeeUltimoProcesoNormalizacion matching the query
* @method McafeeUltimoProcesoNormalizacion findOneOrCreate(PropelPDO $con = null) Return the first McafeeUltimoProcesoNormalizacion matching the query, or a new McafeeUltimoProcesoNormalizacion object populated from the query conditions when no match is found
*
* @method McafeeUltimoProcesoNormalizacion findOneByUltimoUmcId(int $ultimo_umc_id) Return the first McafeeUltimoProcesoNormalizacion filtered by the ultimo_umc_id column
* @method McafeeUltimoProcesoNormalizacion findOneByMunCantidadProcesados(int $mun_cantidad_procesados) Return the first McafeeUltimoProcesoNormalizacion filtered by the mun_cantidad_procesados column
* @method McafeeUltimoProcesoNormalizacion findOneByMunCantidadPendientes(int $mun_cantidad_pendientes) Return the first McafeeUltimoProcesoNormalizacion filtered by the mun_cantidad_pendientes column
* @method McafeeUltimoProcesoNormalizacion findOneByCreatedAt(string $created_at) Return the first McafeeUltimoProcesoNormalizacion filtered by the created_at column
* @method McafeeUltimoProcesoNormalizacion findOneByUpdatedAt(string $updated_at) Return the first McafeeUltimoProcesoNormalizacion filtered by the updated_at column
*
* @method array findByMunId(int $mun_id) Return McafeeUltimoProcesoNormalizacion objects filtered by the mun_id column
* @method array findByUltimoUmcId(int $ultimo_umc_id) Return McafeeUltimoProcesoNormalizacion objects filtered by the ultimo_umc_id column
* @method array findByMunCantidadProcesados(int $mun_cantidad_procesados) Return McafeeUltimoProcesoNormalizacion objects filtered by the mun_cantidad_procesados column
* @method array findByMunCantidadPendientes(int $mun_cantidad_pendientes) Return McafeeUltimoProcesoNormalizacion objects filtered by the mun_cantidad_pendientes column
* @method array findByCreatedAt(string $created_at) Return McafeeUltimoProcesoNormalizacion objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return McafeeUltimoProcesoNormalizacion objects filtered by the updated_at column
*/
abstract class BaseMcafeeUltimoProcesoNormalizacionQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseMcafeeUltimoProcesoNormalizacionQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = null, $modelName = null, $modelAlias = null)
{
if (null === $dbName) {
$dbName = 'default';
}
if (null === $modelName) {
$modelName = 'AppBundle\\Model\\McafeeUltimoProcesoNormalizacion';
}
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new McafeeUltimoProcesoNormalizacionQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param McafeeUltimoProcesoNormalizacionQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return McafeeUltimoProcesoNormalizacionQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof McafeeUltimoProcesoNormalizacionQuery) {
return $criteria;
}
$query = new McafeeUltimoProcesoNormalizacionQuery(null, null, $modelAlias);
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return McafeeUltimoProcesoNormalizacion|McafeeUltimoProcesoNormalizacion[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = McafeeUltimoProcesoNormalizacionPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoNormalizacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return McafeeUltimoProcesoNormalizacion A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneByMunId($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* Find object by primary key using raw SQL to go fast.
* Bypass doSelect() and the object formatter by using generated code.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return McafeeUltimoProcesoNormalizacion A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `mun_id`, `ultimo_umc_id`, `mun_cantidad_procesados`, `mun_cantidad_pendientes`, `created_at`, `updated_at` FROM `mcafee_ultimo_proceso_normalizacion` WHERE `mun_id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
}
$obj = null;
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$obj = new McafeeUltimoProcesoNormalizacion();
$obj->hydrate($row);
McafeeUltimoProcesoNormalizacionPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return McafeeUltimoProcesoNormalizacion|McafeeUltimoProcesoNormalizacion[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|McafeeUltimoProcesoNormalizacion[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $key, Criteria::EQUAL);
}
/**
* Filter the query by a list of primary keys
*
* @param array $keys The list of primary key to use for the query
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $keys, Criteria::IN);
}
/**
* Filter the query on the mun_id column
*
* Example usage:
* <code>
* $query->filterByMunId(1234); // WHERE mun_id = 1234
* $query->filterByMunId(array(12, 34)); // WHERE mun_id IN (12, 34)
* $query->filterByMunId(array('min' => 12)); // WHERE mun_id >= 12
* $query->filterByMunId(array('max' => 12)); // WHERE mun_id <= 12
* </code>
*
* @param mixed $munId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByMunId($munId = null, $comparison = null)
{
if (is_array($munId)) {
$useMinMax = false;
if (isset($munId['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $munId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($munId['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $munId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $munId, $comparison);
}
/**
* Filter the query on the ultimo_umc_id column
*
* Example usage:
* <code>
* $query->filterByUltimoUmcId(1234); // WHERE ultimo_umc_id = 1234
* $query->filterByUltimoUmcId(array(12, 34)); // WHERE ultimo_umc_id IN (12, 34)
* $query->filterByUltimoUmcId(array('min' => 12)); // WHERE ultimo_umc_id >= 12
* $query->filterByUltimoUmcId(array('max' => 12)); // WHERE ultimo_umc_id <= 12
* </code>
*
* @see filterByUsuarioMcafee()
*
* @param mixed $ultimoUmcId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByUltimoUmcId($ultimoUmcId = null, $comparison = null)
{
if (is_array($ultimoUmcId)) {
$useMinMax = false;
if (isset($ultimoUmcId['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $ultimoUmcId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($ultimoUmcId['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $ultimoUmcId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $ultimoUmcId, $comparison);
}
/**
* Filter the query on the mun_cantidad_procesados column
*
* Example usage:
* <code>
* $query->filterByMunCantidadProcesados(1234); // WHERE mun_cantidad_procesados = 1234
* $query->filterByMunCantidadProcesados(array(12, 34)); // WHERE mun_cantidad_procesados IN (12, 34)
* $query->filterByMunCantidadProcesados(array('min' => 12)); // WHERE mun_cantidad_procesados >= 12
* $query->filterByMunCantidadProcesados(array('max' => 12)); // WHERE mun_cantidad_procesados <= 12
* </code>
*
* @param mixed $munCantidadProcesados The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByMunCantidadProcesados($munCantidadProcesados = null, $comparison = null)
{
if (is_array($munCantidadProcesados)) {
$useMinMax = false;
if (isset($munCantidadProcesados['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS, $munCantidadProcesados['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($munCantidadProcesados['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS, $munCantidadProcesados['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PROCESADOS, $munCantidadProcesados, $comparison);
}
/**
* Filter the query on the mun_cantidad_pendientes column
*
* Example usage:
* <code>
* $query->filterByMunCantidadPendientes(1234); // WHERE mun_cantidad_pendientes = 1234
* $query->filterByMunCantidadPendientes(array(12, 34)); // WHERE mun_cantidad_pendientes IN (12, 34)
* $query->filterByMunCantidadPendientes(array('min' => 12)); // WHERE mun_cantidad_pendientes >= 12
* $query->filterByMunCantidadPendientes(array('max' => 12)); // WHERE mun_cantidad_pendientes <= 12
* </code>
*
* @param mixed $munCantidadPendientes The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByMunCantidadPendientes($munCantidadPendientes = null, $comparison = null)
{
if (is_array($munCantidadPendientes)) {
$useMinMax = false;
if (isset($munCantidadPendientes['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES, $munCantidadPendientes['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($munCantidadPendientes['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES, $munCantidadPendientes['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_CANTIDAD_PENDIENTES, $munCantidadPendientes, $comparison);
}
/**
* Filter the query on the created_at column
*
* Example usage:
* <code>
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at < '2011-03-13'
* </code>
*
* @param mixed $createdAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByCreatedAt($createdAt = null, $comparison = null)
{
if (is_array($createdAt)) {
$useMinMax = false;
if (isset($createdAt['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, $createdAt, $comparison);
}
/**
* Filter the query on the updated_at column
*
* Example usage:
* <code>
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at < '2011-03-13'
* </code>
*
* @param mixed $updatedAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
{
if (is_array($updatedAt)) {
$useMinMax = false;
if (isset($updatedAt['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query by a related UsuarioMcafee object
*
* @param UsuarioMcafee|PropelObjectCollection $usuarioMcafee The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByUsuarioMcafee($usuarioMcafee, $comparison = null)
{
if ($usuarioMcafee instanceof UsuarioMcafee) {
return $this
->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $usuarioMcafee->getUmcId(), $comparison);
} elseif ($usuarioMcafee instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::ULTIMO_UMC_ID, $usuarioMcafee->toKeyValue('PrimaryKey', 'UmcId'), $comparison);
} else {
throw new PropelException('filterByUsuarioMcafee() only accepts arguments of type UsuarioMcafee or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the UsuarioMcafee relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function joinUsuarioMcafee($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('UsuarioMcafee');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'UsuarioMcafee');
}
return $this;
}
/**
* Use the UsuarioMcafee relation UsuarioMcafee object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \AppBundle\Model\UsuarioMcafeeQuery A secondary query class using the current class as primary query
*/
public function useUsuarioMcafeeQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinUsuarioMcafee($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'UsuarioMcafee', '\AppBundle\Model\UsuarioMcafeeQuery');
}
/**
* Exclude object from result
*
* @param McafeeUltimoProcesoNormalizacion $mcafeeUltimoProcesoNormalizacion Object to remove from the list of results
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function prune($mcafeeUltimoProcesoNormalizacion = null)
{
if ($mcafeeUltimoProcesoNormalizacion) {
$this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::MUN_ID, $mcafeeUltimoProcesoNormalizacion->getMunId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(McafeeUltimoProcesoNormalizacionPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return McafeeUltimoProcesoNormalizacionQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(McafeeUltimoProcesoNormalizacionPeer::CREATED_AT);
}
}
......@@ -21,6 +21,8 @@ use AppBundle\Model\McafeeTransaccion;
use AppBundle\Model\McafeeTransaccionPendiente;
use AppBundle\Model\McafeeTransaccionPendienteQuery;
use AppBundle\Model\McafeeTransaccionQuery;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery;
use AppBundle\Model\Tracking;
use AppBundle\Model\TrackingQuery;
use AppBundle\Model\UsuarioMcafee;
......@@ -145,6 +147,12 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
*/
protected $umc_movil;
/**
* The value for the umc_fijo field.
* @var string
*/
protected $umc_fijo;
/**
* The value for the umc_customer_id field.
* @var string
......@@ -187,6 +195,12 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
protected $collMcafeeTransaccionPendientes;
protected $collMcafeeTransaccionPendientesPartial;
/**
* @var PropelObjectCollection|McafeeUltimoProcesoNormalizacion[] Collection to store aggregation of McafeeUltimoProcesoNormalizacion objects.
*/
protected $collMcafeeUltimoProcesoNormalizacions;
protected $collMcafeeUltimoProcesoNormalizacionsPartial;
/**
* @var PropelObjectCollection|Tracking[] Collection to store aggregation of Tracking objects.
*/
......@@ -231,6 +245,12 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
*/
protected $mcafeeTransaccionPendientesScheduledForDeletion = null;
/**
* An array of objects scheduled for deletion.
* @var PropelObjectCollection
*/
protected $mcafeeUltimoProcesoNormalizacionsScheduledForDeletion = null;
/**
* An array of objects scheduled for deletion.
* @var PropelObjectCollection
......@@ -463,6 +483,17 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
return $this->umc_movil;
}
/**
* Get the [umc_fijo] column value.
*
* @return string
*/
public function getUmcFijo()
{
return $this->umc_fijo;
}
/**
* Get the [umc_customer_id] column value.
*
......@@ -919,6 +950,27 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
return $this;
} // setUmcMovil()
/**
* Set the value of [umc_fijo] column.
*
* @param string $v new value
* @return UsuarioMcafee The current object (for fluent API support)
*/
public function setUmcFijo($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->umc_fijo !== $v) {
$this->umc_fijo = $v;
$this->modifiedColumns[] = UsuarioMcafeePeer::UMC_FIJO;
}
return $this;
} // setUmcFijo()
/**
* Set the value of [umc_customer_id] column.
*
......@@ -1067,10 +1119,11 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$this->umc_permite_email = ($row[$startcol + 13] !== null) ? (boolean) $row[$startcol + 13] : null;
$this->umc_fecha_desuscripcion_email = ($row[$startcol + 14] !== null) ? (string) $row[$startcol + 14] : null;
$this->umc_movil = ($row[$startcol + 15] !== null) ? (string) $row[$startcol + 15] : null;
$this->umc_customer_id = ($row[$startcol + 16] !== null) ? (string) $row[$startcol + 16] : null;
$this->umc_eliminado = ($row[$startcol + 17] !== null) ? (boolean) $row[$startcol + 17] : null;
$this->created_at = ($row[$startcol + 18] !== null) ? (string) $row[$startcol + 18] : null;
$this->updated_at = ($row[$startcol + 19] !== null) ? (string) $row[$startcol + 19] : null;
$this->umc_fijo = ($row[$startcol + 16] !== null) ? (string) $row[$startcol + 16] : null;
$this->umc_customer_id = ($row[$startcol + 17] !== null) ? (string) $row[$startcol + 17] : null;
$this->umc_eliminado = ($row[$startcol + 18] !== null) ? (boolean) $row[$startcol + 18] : null;
$this->created_at = ($row[$startcol + 19] !== null) ? (string) $row[$startcol + 19] : null;
$this->updated_at = ($row[$startcol + 20] !== null) ? (string) $row[$startcol + 20] : null;
$this->resetModified();
$this->setNew(false);
......@@ -1080,7 +1133,7 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
}
$this->postHydrate($row, $startcol, $rehydrate);
return $startcol + 20; // 20 = UsuarioMcafeePeer::NUM_HYDRATE_COLUMNS.
return $startcol + 21; // 21 = UsuarioMcafeePeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating UsuarioMcafee object", $e);
......@@ -1148,6 +1201,8 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$this->collMcafeeTransaccionPendientes = null;
$this->collMcafeeUltimoProcesoNormalizacions = null;
$this->collTrackings = null;
} // if (deep)
......@@ -1339,6 +1394,24 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
}
}
if ($this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion !== null) {
if (!$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion->isEmpty()) {
foreach ($this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion as $mcafeeUltimoProcesoNormalizacion) {
// need to save related object because we set the relation to null
$mcafeeUltimoProcesoNormalizacion->save($con);
}
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion = null;
}
}
if ($this->collMcafeeUltimoProcesoNormalizacions !== null) {
foreach ($this->collMcafeeUltimoProcesoNormalizacions as $referrerFK) {
if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
$affectedRows += $referrerFK->save($con);
}
}
}
if ($this->trackingsScheduledForDeletion !== null) {
if (!$this->trackingsScheduledForDeletion->isEmpty()) {
foreach ($this->trackingsScheduledForDeletion as $tracking) {
......@@ -1431,6 +1504,9 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_MOVIL)) {
$modifiedColumns[':p' . $index++] = '`umc_movil`';
}
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_FIJO)) {
$modifiedColumns[':p' . $index++] = '`umc_fijo`';
}
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_CUSTOMER_ID)) {
$modifiedColumns[':p' . $index++] = '`umc_customer_id`';
}
......@@ -1502,6 +1578,9 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
case '`umc_movil`':
$stmt->bindValue($identifier, $this->umc_movil, PDO::PARAM_STR);
break;
case '`umc_fijo`':
$stmt->bindValue($identifier, $this->umc_fijo, PDO::PARAM_STR);
break;
case '`umc_customer_id`':
$stmt->bindValue($identifier, $this->umc_customer_id, PDO::PARAM_STR);
break;
......@@ -1637,6 +1716,14 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
}
}
if ($this->collMcafeeUltimoProcesoNormalizacions !== null) {
foreach ($this->collMcafeeUltimoProcesoNormalizacions as $referrerFK) {
if (!$referrerFK->validate($columns)) {
$failureMap = array_merge($failureMap, $referrerFK->getValidationFailures());
}
}
}
if ($this->collTrackings !== null) {
foreach ($this->collTrackings as $referrerFK) {
if (!$referrerFK->validate($columns)) {
......@@ -1729,15 +1816,18 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
return $this->getUmcMovil();
break;
case 16:
return $this->getUmcCustomerId();
return $this->getUmcFijo();
break;
case 17:
return $this->getUmcEliminado();
return $this->getUmcCustomerId();
break;
case 18:
return $this->getCreatedAt();
return $this->getUmcEliminado();
break;
case 19:
return $this->getCreatedAt();
break;
case 20:
return $this->getUpdatedAt();
break;
default:
......@@ -1785,10 +1875,11 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$keys[13] => $this->getUmcPermiteEmail(),
$keys[14] => $this->getUmcFechaDesuscripcionEmail(),
$keys[15] => $this->getUmcMovil(),
$keys[16] => $this->getUmcCustomerId(),
$keys[17] => $this->getUmcEliminado(),
$keys[18] => $this->getCreatedAt(),
$keys[19] => $this->getUpdatedAt(),
$keys[16] => $this->getUmcFijo(),
$keys[17] => $this->getUmcCustomerId(),
$keys[18] => $this->getUmcEliminado(),
$keys[19] => $this->getCreatedAt(),
$keys[20] => $this->getUpdatedAt(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
......@@ -1805,6 +1896,9 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
if (null !== $this->collMcafeeTransaccionPendientes) {
$result['McafeeTransaccionPendientes'] = $this->collMcafeeTransaccionPendientes->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
}
if (null !== $this->collMcafeeUltimoProcesoNormalizacions) {
$result['McafeeUltimoProcesoNormalizacions'] = $this->collMcafeeUltimoProcesoNormalizacions->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
}
if (null !== $this->collTrackings) {
$result['Trackings'] = $this->collTrackings->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
}
......@@ -1891,15 +1985,18 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$this->setUmcMovil($value);
break;
case 16:
$this->setUmcCustomerId($value);
$this->setUmcFijo($value);
break;
case 17:
$this->setUmcEliminado($value);
$this->setUmcCustomerId($value);
break;
case 18:
$this->setCreatedAt($value);
$this->setUmcEliminado($value);
break;
case 19:
$this->setCreatedAt($value);
break;
case 20:
$this->setUpdatedAt($value);
break;
} // switch()
......@@ -1942,10 +2039,11 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
if (array_key_exists($keys[13], $arr)) $this->setUmcPermiteEmail($arr[$keys[13]]);
if (array_key_exists($keys[14], $arr)) $this->setUmcFechaDesuscripcionEmail($arr[$keys[14]]);
if (array_key_exists($keys[15], $arr)) $this->setUmcMovil($arr[$keys[15]]);
if (array_key_exists($keys[16], $arr)) $this->setUmcCustomerId($arr[$keys[16]]);
if (array_key_exists($keys[17], $arr)) $this->setUmcEliminado($arr[$keys[17]]);
if (array_key_exists($keys[18], $arr)) $this->setCreatedAt($arr[$keys[18]]);
if (array_key_exists($keys[19], $arr)) $this->setUpdatedAt($arr[$keys[19]]);
if (array_key_exists($keys[16], $arr)) $this->setUmcFijo($arr[$keys[16]]);
if (array_key_exists($keys[17], $arr)) $this->setUmcCustomerId($arr[$keys[17]]);
if (array_key_exists($keys[18], $arr)) $this->setUmcEliminado($arr[$keys[18]]);
if (array_key_exists($keys[19], $arr)) $this->setCreatedAt($arr[$keys[19]]);
if (array_key_exists($keys[20], $arr)) $this->setUpdatedAt($arr[$keys[20]]);
}
/**
......@@ -1973,6 +2071,7 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_PERMITE_EMAIL)) $criteria->add(UsuarioMcafeePeer::UMC_PERMITE_EMAIL, $this->umc_permite_email);
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL)) $criteria->add(UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL, $this->umc_fecha_desuscripcion_email);
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_MOVIL)) $criteria->add(UsuarioMcafeePeer::UMC_MOVIL, $this->umc_movil);
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_FIJO)) $criteria->add(UsuarioMcafeePeer::UMC_FIJO, $this->umc_fijo);
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_CUSTOMER_ID)) $criteria->add(UsuarioMcafeePeer::UMC_CUSTOMER_ID, $this->umc_customer_id);
if ($this->isColumnModified(UsuarioMcafeePeer::UMC_ELIMINADO)) $criteria->add(UsuarioMcafeePeer::UMC_ELIMINADO, $this->umc_eliminado);
if ($this->isColumnModified(UsuarioMcafeePeer::CREATED_AT)) $criteria->add(UsuarioMcafeePeer::CREATED_AT, $this->created_at);
......@@ -2055,6 +2154,7 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$copyObj->setUmcPermiteEmail($this->getUmcPermiteEmail());
$copyObj->setUmcFechaDesuscripcionEmail($this->getUmcFechaDesuscripcionEmail());
$copyObj->setUmcMovil($this->getUmcMovil());
$copyObj->setUmcFijo($this->getUmcFijo());
$copyObj->setUmcCustomerId($this->getUmcCustomerId());
$copyObj->setUmcEliminado($this->getUmcEliminado());
$copyObj->setCreatedAt($this->getCreatedAt());
......@@ -2085,6 +2185,12 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
}
}
foreach ($this->getMcafeeUltimoProcesoNormalizacions() as $relObj) {
if ($relObj !== $this) { // ensure that we don't try to copy a reference to ourselves
$copyObj->addMcafeeUltimoProcesoNormalizacion($relObj->copy($deepCopy));
}
}
foreach ($this->getTrackings() as $relObj) {
if ($relObj !== $this) { // ensure that we don't try to copy a reference to ourselves
$copyObj->addTracking($relObj->copy($deepCopy));
......@@ -2161,6 +2267,9 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
if ('McafeeTransaccionPendiente' == $relationName) {
$this->initMcafeeTransaccionPendientes();
}
if ('McafeeUltimoProcesoNormalizacion' == $relationName) {
$this->initMcafeeUltimoProcesoNormalizacions();
}
if ('Tracking' == $relationName) {
$this->initTrackings();
}
......@@ -2866,6 +2975,231 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
return $this;
}
/**
* Clears out the collMcafeeUltimoProcesoNormalizacions collection
*
* This does not modify the database; however, it will remove any associated objects, causing
* them to be refetched by subsequent calls to accessor method.
*
* @return UsuarioMcafee The current object (for fluent API support)
* @see addMcafeeUltimoProcesoNormalizacions()
*/
public function clearMcafeeUltimoProcesoNormalizacions()
{
$this->collMcafeeUltimoProcesoNormalizacions = null; // important to set this to null since that means it is uninitialized
$this->collMcafeeUltimoProcesoNormalizacionsPartial = null;
return $this;
}
/**
* reset is the collMcafeeUltimoProcesoNormalizacions collection loaded partially
*
* @return void
*/
public function resetPartialMcafeeUltimoProcesoNormalizacions($v = true)
{
$this->collMcafeeUltimoProcesoNormalizacionsPartial = $v;
}
/**
* Initializes the collMcafeeUltimoProcesoNormalizacions collection.
*
* By default this just sets the collMcafeeUltimoProcesoNormalizacions collection to an empty array (like clearcollMcafeeUltimoProcesoNormalizacions());
* however, you may wish to override this method in your stub class to provide setting appropriate
* to your application -- for example, setting the initial array to the values stored in database.
*
* @param boolean $overrideExisting If set to true, the method call initializes
* the collection even if it is not empty
*
* @return void
*/
public function initMcafeeUltimoProcesoNormalizacions($overrideExisting = true)
{
if (null !== $this->collMcafeeUltimoProcesoNormalizacions && !$overrideExisting) {
return;
}
$this->collMcafeeUltimoProcesoNormalizacions = new PropelObjectCollection();
$this->collMcafeeUltimoProcesoNormalizacions->setModel('McafeeUltimoProcesoNormalizacion');
}
/**
* Gets an array of McafeeUltimoProcesoNormalizacion objects which contain a foreign key that references this object.
*
* If the $criteria is not null, it is used to always fetch the results from the database.
* Otherwise the results are fetched from the database the first time, then cached.
* Next time the same method is called without $criteria, the cached collection is returned.
* If this UsuarioMcafee is new, it will return
* an empty collection or the current collection; the criteria is ignored on a new object.
*
* @param Criteria $criteria optional Criteria object to narrow the query
* @param PropelPDO $con optional connection object
* @return PropelObjectCollection|McafeeUltimoProcesoNormalizacion[] List of McafeeUltimoProcesoNormalizacion objects
* @throws PropelException
*/
public function getMcafeeUltimoProcesoNormalizacions($criteria = null, PropelPDO $con = null)
{
$partial = $this->collMcafeeUltimoProcesoNormalizacionsPartial && !$this->isNew();
if (null === $this->collMcafeeUltimoProcesoNormalizacions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collMcafeeUltimoProcesoNormalizacions) {
// return empty collection
$this->initMcafeeUltimoProcesoNormalizacions();
} else {
$collMcafeeUltimoProcesoNormalizacions = McafeeUltimoProcesoNormalizacionQuery::create(null, $criteria)
->filterByUsuarioMcafee($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collMcafeeUltimoProcesoNormalizacionsPartial && count($collMcafeeUltimoProcesoNormalizacions)) {
$this->initMcafeeUltimoProcesoNormalizacions(false);
foreach ($collMcafeeUltimoProcesoNormalizacions as $obj) {
if (false == $this->collMcafeeUltimoProcesoNormalizacions->contains($obj)) {
$this->collMcafeeUltimoProcesoNormalizacions->append($obj);
}
}
$this->collMcafeeUltimoProcesoNormalizacionsPartial = true;
}
$collMcafeeUltimoProcesoNormalizacions->getInternalIterator()->rewind();
return $collMcafeeUltimoProcesoNormalizacions;
}
if ($partial && $this->collMcafeeUltimoProcesoNormalizacions) {
foreach ($this->collMcafeeUltimoProcesoNormalizacions as $obj) {
if ($obj->isNew()) {
$collMcafeeUltimoProcesoNormalizacions[] = $obj;
}
}
}
$this->collMcafeeUltimoProcesoNormalizacions = $collMcafeeUltimoProcesoNormalizacions;
$this->collMcafeeUltimoProcesoNormalizacionsPartial = false;
}
}
return $this->collMcafeeUltimoProcesoNormalizacions;
}
/**
* Sets a collection of McafeeUltimoProcesoNormalizacion objects related by a one-to-many relationship
* to the current object.
* It will also schedule objects for deletion based on a diff between old objects (aka persisted)
* and new objects from the given Propel collection.
*
* @param PropelCollection $mcafeeUltimoProcesoNormalizacions A Propel collection.
* @param PropelPDO $con Optional connection object
* @return UsuarioMcafee The current object (for fluent API support)
*/
public function setMcafeeUltimoProcesoNormalizacions(PropelCollection $mcafeeUltimoProcesoNormalizacions, PropelPDO $con = null)
{
$mcafeeUltimoProcesoNormalizacionsToDelete = $this->getMcafeeUltimoProcesoNormalizacions(new Criteria(), $con)->diff($mcafeeUltimoProcesoNormalizacions);
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion = $mcafeeUltimoProcesoNormalizacionsToDelete;
foreach ($mcafeeUltimoProcesoNormalizacionsToDelete as $mcafeeUltimoProcesoNormalizacionRemoved) {
$mcafeeUltimoProcesoNormalizacionRemoved->setUsuarioMcafee(null);
}
$this->collMcafeeUltimoProcesoNormalizacions = null;
foreach ($mcafeeUltimoProcesoNormalizacions as $mcafeeUltimoProcesoNormalizacion) {
$this->addMcafeeUltimoProcesoNormalizacion($mcafeeUltimoProcesoNormalizacion);
}
$this->collMcafeeUltimoProcesoNormalizacions = $mcafeeUltimoProcesoNormalizacions;
$this->collMcafeeUltimoProcesoNormalizacionsPartial = false;
return $this;
}
/**
* Returns the number of related McafeeUltimoProcesoNormalizacion objects.
*
* @param Criteria $criteria
* @param boolean $distinct
* @param PropelPDO $con
* @return int Count of related McafeeUltimoProcesoNormalizacion objects.
* @throws PropelException
*/
public function countMcafeeUltimoProcesoNormalizacions(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
{
$partial = $this->collMcafeeUltimoProcesoNormalizacionsPartial && !$this->isNew();
if (null === $this->collMcafeeUltimoProcesoNormalizacions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collMcafeeUltimoProcesoNormalizacions) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getMcafeeUltimoProcesoNormalizacions());
}
$query = McafeeUltimoProcesoNormalizacionQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterByUsuarioMcafee($this)
->count($con);
}
return count($this->collMcafeeUltimoProcesoNormalizacions);
}
/**
* Method called to associate a McafeeUltimoProcesoNormalizacion object to this object
* through the McafeeUltimoProcesoNormalizacion foreign key attribute.
*
* @param McafeeUltimoProcesoNormalizacion $l McafeeUltimoProcesoNormalizacion
* @return UsuarioMcafee The current object (for fluent API support)
*/
public function addMcafeeUltimoProcesoNormalizacion(McafeeUltimoProcesoNormalizacion $l)
{
if ($this->collMcafeeUltimoProcesoNormalizacions === null) {
$this->initMcafeeUltimoProcesoNormalizacions();
$this->collMcafeeUltimoProcesoNormalizacionsPartial = true;
}
if (!in_array($l, $this->collMcafeeUltimoProcesoNormalizacions->getArrayCopy(), true)) { // only add it if the **same** object is not already associated
$this->doAddMcafeeUltimoProcesoNormalizacion($l);
if ($this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion and $this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion->contains($l)) {
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion->remove($this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion->search($l));
}
}
return $this;
}
/**
* @param McafeeUltimoProcesoNormalizacion $mcafeeUltimoProcesoNormalizacion The mcafeeUltimoProcesoNormalizacion object to add.
*/
protected function doAddMcafeeUltimoProcesoNormalizacion($mcafeeUltimoProcesoNormalizacion)
{
$this->collMcafeeUltimoProcesoNormalizacions[]= $mcafeeUltimoProcesoNormalizacion;
$mcafeeUltimoProcesoNormalizacion->setUsuarioMcafee($this);
}
/**
* @param McafeeUltimoProcesoNormalizacion $mcafeeUltimoProcesoNormalizacion The mcafeeUltimoProcesoNormalizacion object to remove.
* @return UsuarioMcafee The current object (for fluent API support)
*/
public function removeMcafeeUltimoProcesoNormalizacion($mcafeeUltimoProcesoNormalizacion)
{
if ($this->getMcafeeUltimoProcesoNormalizacions()->contains($mcafeeUltimoProcesoNormalizacion)) {
$this->collMcafeeUltimoProcesoNormalizacions->remove($this->collMcafeeUltimoProcesoNormalizacions->search($mcafeeUltimoProcesoNormalizacion));
if (null === $this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion) {
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion = clone $this->collMcafeeUltimoProcesoNormalizacions;
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion->clear();
}
$this->mcafeeUltimoProcesoNormalizacionsScheduledForDeletion[]= $mcafeeUltimoProcesoNormalizacion;
$mcafeeUltimoProcesoNormalizacion->setUsuarioMcafee(null);
}
return $this;
}
/**
* Clears out the collTrackings collection
*
......@@ -3137,6 +3471,7 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$this->umc_permite_email = null;
$this->umc_fecha_desuscripcion_email = null;
$this->umc_movil = null;
$this->umc_fijo = null;
$this->umc_customer_id = null;
$this->umc_eliminado = null;
$this->created_at = null;
......@@ -3179,6 +3514,11 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$o->clearAllReferences($deep);
}
}
if ($this->collMcafeeUltimoProcesoNormalizacions) {
foreach ($this->collMcafeeUltimoProcesoNormalizacions as $o) {
$o->clearAllReferences($deep);
}
}
if ($this->collTrackings) {
foreach ($this->collTrackings as $o) {
$o->clearAllReferences($deep);
......@@ -3200,6 +3540,10 @@ abstract class BaseUsuarioMcafee extends BaseObject implements Persistent
$this->collMcafeeTransaccionPendientes->clearIterator();
}
$this->collMcafeeTransaccionPendientes = null;
if ($this->collMcafeeUltimoProcesoNormalizacions instanceof PropelCollection) {
$this->collMcafeeUltimoProcesoNormalizacions->clearIterator();
}
$this->collMcafeeUltimoProcesoNormalizacions = null;
if ($this->collTrackings instanceof PropelCollection) {
$this->collTrackings->clearIterator();
}
......
......@@ -29,13 +29,13 @@ abstract class BaseUsuarioMcafeePeer
const TM_CLASS = 'AppBundle\\Model\\map\\UsuarioMcafeeTableMap';
/** The total number of columns. */
const NUM_COLUMNS = 20;
const NUM_COLUMNS = 21;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
const NUM_HYDRATE_COLUMNS = 20;
const NUM_HYDRATE_COLUMNS = 21;
/** the column name for the umc_id field */
const UMC_ID = 'usuario_mcafee.umc_id';
......@@ -85,6 +85,9 @@ abstract class BaseUsuarioMcafeePeer
/** the column name for the umc_movil field */
const UMC_MOVIL = 'usuario_mcafee.umc_movil';
/** the column name for the umc_fijo field */
const UMC_FIJO = 'usuario_mcafee.umc_fijo';
/** the column name for the umc_customer_id field */
const UMC_CUSTOMER_ID = 'usuario_mcafee.umc_customer_id';
......@@ -116,12 +119,12 @@ abstract class BaseUsuarioMcafeePeer
* e.g. UsuarioMcafeePeer::$fieldNames[UsuarioMcafeePeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('UmcId', 'UmcMcafeeTipoProducto', 'UmcMcafeeAffid', 'UmcMcafeeCcid', 'UmcMcafeeEmail', 'UmcMcafeeSku', 'UmcMcafeeKeycard', 'UmcMcafeeStatus', 'UmcMovistarActivo', 'UmcMovistarAny', 'UmcMovistarEmail', 'UmcMovistarRut', 'UmcParametroEncriptado', 'UmcPermiteEmail', 'UmcFechaDesuscripcionEmail', 'UmcMovil', 'UmcCustomerId', 'UmcEliminado', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('umcId', 'umcMcafeeTipoProducto', 'umcMcafeeAffid', 'umcMcafeeCcid', 'umcMcafeeEmail', 'umcMcafeeSku', 'umcMcafeeKeycard', 'umcMcafeeStatus', 'umcMovistarActivo', 'umcMovistarAny', 'umcMovistarEmail', 'umcMovistarRut', 'umcParametroEncriptado', 'umcPermiteEmail', 'umcFechaDesuscripcionEmail', 'umcMovil', 'umcCustomerId', 'umcEliminado', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (UsuarioMcafeePeer::UMC_ID, UsuarioMcafeePeer::UMC_MCAFEE_TIPO_PRODUCTO, UsuarioMcafeePeer::UMC_MCAFEE_AFFID, UsuarioMcafeePeer::UMC_MCAFEE_CCID, UsuarioMcafeePeer::UMC_MCAFEE_EMAIL, UsuarioMcafeePeer::UMC_MCAFEE_SKU, UsuarioMcafeePeer::UMC_MCAFEE_KEYCARD, UsuarioMcafeePeer::UMC_MCAFEE_STATUS, UsuarioMcafeePeer::UMC_MOVISTAR_ACTIVO, UsuarioMcafeePeer::UMC_MOVISTAR_ANY, UsuarioMcafeePeer::UMC_MOVISTAR_EMAIL, UsuarioMcafeePeer::UMC_MOVISTAR_RUT, UsuarioMcafeePeer::UMC_PARAMETRO_ENCRIPTADO, UsuarioMcafeePeer::UMC_PERMITE_EMAIL, UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL, UsuarioMcafeePeer::UMC_MOVIL, UsuarioMcafeePeer::UMC_CUSTOMER_ID, UsuarioMcafeePeer::UMC_ELIMINADO, UsuarioMcafeePeer::CREATED_AT, UsuarioMcafeePeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('UMC_ID', 'UMC_MCAFEE_TIPO_PRODUCTO', 'UMC_MCAFEE_AFFID', 'UMC_MCAFEE_CCID', 'UMC_MCAFEE_EMAIL', 'UMC_MCAFEE_SKU', 'UMC_MCAFEE_KEYCARD', 'UMC_MCAFEE_STATUS', 'UMC_MOVISTAR_ACTIVO', 'UMC_MOVISTAR_ANY', 'UMC_MOVISTAR_EMAIL', 'UMC_MOVISTAR_RUT', 'UMC_PARAMETRO_ENCRIPTADO', 'UMC_PERMITE_EMAIL', 'UMC_FECHA_DESUSCRIPCION_EMAIL', 'UMC_MOVIL', 'UMC_CUSTOMER_ID', 'UMC_ELIMINADO', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('umc_id', 'umc_mcafee_tipo_producto', 'umc_mcafee_affid', 'umc_mcafee_ccid', 'umc_mcafee_email', 'umc_mcafee_sku', 'umc_mcafee_keycard', 'umc_mcafee_status', 'umc_movistar_activo', 'umc_movistar_any', 'umc_movistar_email', 'umc_movistar_rut', 'umc_parametro_encriptado', 'umc_permite_email', 'umc_fecha_desuscripcion_email', 'umc_movil', 'umc_customer_id', 'umc_eliminado', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, )
BasePeer::TYPE_PHPNAME => array ('UmcId', 'UmcMcafeeTipoProducto', 'UmcMcafeeAffid', 'UmcMcafeeCcid', 'UmcMcafeeEmail', 'UmcMcafeeSku', 'UmcMcafeeKeycard', 'UmcMcafeeStatus', 'UmcMovistarActivo', 'UmcMovistarAny', 'UmcMovistarEmail', 'UmcMovistarRut', 'UmcParametroEncriptado', 'UmcPermiteEmail', 'UmcFechaDesuscripcionEmail', 'UmcMovil', 'UmcFijo', 'UmcCustomerId', 'UmcEliminado', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('umcId', 'umcMcafeeTipoProducto', 'umcMcafeeAffid', 'umcMcafeeCcid', 'umcMcafeeEmail', 'umcMcafeeSku', 'umcMcafeeKeycard', 'umcMcafeeStatus', 'umcMovistarActivo', 'umcMovistarAny', 'umcMovistarEmail', 'umcMovistarRut', 'umcParametroEncriptado', 'umcPermiteEmail', 'umcFechaDesuscripcionEmail', 'umcMovil', 'umcFijo', 'umcCustomerId', 'umcEliminado', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (UsuarioMcafeePeer::UMC_ID, UsuarioMcafeePeer::UMC_MCAFEE_TIPO_PRODUCTO, UsuarioMcafeePeer::UMC_MCAFEE_AFFID, UsuarioMcafeePeer::UMC_MCAFEE_CCID, UsuarioMcafeePeer::UMC_MCAFEE_EMAIL, UsuarioMcafeePeer::UMC_MCAFEE_SKU, UsuarioMcafeePeer::UMC_MCAFEE_KEYCARD, UsuarioMcafeePeer::UMC_MCAFEE_STATUS, UsuarioMcafeePeer::UMC_MOVISTAR_ACTIVO, UsuarioMcafeePeer::UMC_MOVISTAR_ANY, UsuarioMcafeePeer::UMC_MOVISTAR_EMAIL, UsuarioMcafeePeer::UMC_MOVISTAR_RUT, UsuarioMcafeePeer::UMC_PARAMETRO_ENCRIPTADO, UsuarioMcafeePeer::UMC_PERMITE_EMAIL, UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL, UsuarioMcafeePeer::UMC_MOVIL, UsuarioMcafeePeer::UMC_FIJO, UsuarioMcafeePeer::UMC_CUSTOMER_ID, UsuarioMcafeePeer::UMC_ELIMINADO, UsuarioMcafeePeer::CREATED_AT, UsuarioMcafeePeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('UMC_ID', 'UMC_MCAFEE_TIPO_PRODUCTO', 'UMC_MCAFEE_AFFID', 'UMC_MCAFEE_CCID', 'UMC_MCAFEE_EMAIL', 'UMC_MCAFEE_SKU', 'UMC_MCAFEE_KEYCARD', 'UMC_MCAFEE_STATUS', 'UMC_MOVISTAR_ACTIVO', 'UMC_MOVISTAR_ANY', 'UMC_MOVISTAR_EMAIL', 'UMC_MOVISTAR_RUT', 'UMC_PARAMETRO_ENCRIPTADO', 'UMC_PERMITE_EMAIL', 'UMC_FECHA_DESUSCRIPCION_EMAIL', 'UMC_MOVIL', 'UMC_FIJO', 'UMC_CUSTOMER_ID', 'UMC_ELIMINADO', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('umc_id', 'umc_mcafee_tipo_producto', 'umc_mcafee_affid', 'umc_mcafee_ccid', 'umc_mcafee_email', 'umc_mcafee_sku', 'umc_mcafee_keycard', 'umc_mcafee_status', 'umc_movistar_activo', 'umc_movistar_any', 'umc_movistar_email', 'umc_movistar_rut', 'umc_parametro_encriptado', 'umc_permite_email', 'umc_fecha_desuscripcion_email', 'umc_movil', 'umc_fijo', 'umc_customer_id', 'umc_eliminado', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, )
);
/**
......@@ -131,12 +134,12 @@ abstract class BaseUsuarioMcafeePeer
* e.g. UsuarioMcafeePeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('UmcId' => 0, 'UmcMcafeeTipoProducto' => 1, 'UmcMcafeeAffid' => 2, 'UmcMcafeeCcid' => 3, 'UmcMcafeeEmail' => 4, 'UmcMcafeeSku' => 5, 'UmcMcafeeKeycard' => 6, 'UmcMcafeeStatus' => 7, 'UmcMovistarActivo' => 8, 'UmcMovistarAny' => 9, 'UmcMovistarEmail' => 10, 'UmcMovistarRut' => 11, 'UmcParametroEncriptado' => 12, 'UmcPermiteEmail' => 13, 'UmcFechaDesuscripcionEmail' => 14, 'UmcMovil' => 15, 'UmcCustomerId' => 16, 'UmcEliminado' => 17, 'CreatedAt' => 18, 'UpdatedAt' => 19, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('umcId' => 0, 'umcMcafeeTipoProducto' => 1, 'umcMcafeeAffid' => 2, 'umcMcafeeCcid' => 3, 'umcMcafeeEmail' => 4, 'umcMcafeeSku' => 5, 'umcMcafeeKeycard' => 6, 'umcMcafeeStatus' => 7, 'umcMovistarActivo' => 8, 'umcMovistarAny' => 9, 'umcMovistarEmail' => 10, 'umcMovistarRut' => 11, 'umcParametroEncriptado' => 12, 'umcPermiteEmail' => 13, 'umcFechaDesuscripcionEmail' => 14, 'umcMovil' => 15, 'umcCustomerId' => 16, 'umcEliminado' => 17, 'createdAt' => 18, 'updatedAt' => 19, ),
BasePeer::TYPE_COLNAME => array (UsuarioMcafeePeer::UMC_ID => 0, UsuarioMcafeePeer::UMC_MCAFEE_TIPO_PRODUCTO => 1, UsuarioMcafeePeer::UMC_MCAFEE_AFFID => 2, UsuarioMcafeePeer::UMC_MCAFEE_CCID => 3, UsuarioMcafeePeer::UMC_MCAFEE_EMAIL => 4, UsuarioMcafeePeer::UMC_MCAFEE_SKU => 5, UsuarioMcafeePeer::UMC_MCAFEE_KEYCARD => 6, UsuarioMcafeePeer::UMC_MCAFEE_STATUS => 7, UsuarioMcafeePeer::UMC_MOVISTAR_ACTIVO => 8, UsuarioMcafeePeer::UMC_MOVISTAR_ANY => 9, UsuarioMcafeePeer::UMC_MOVISTAR_EMAIL => 10, UsuarioMcafeePeer::UMC_MOVISTAR_RUT => 11, UsuarioMcafeePeer::UMC_PARAMETRO_ENCRIPTADO => 12, UsuarioMcafeePeer::UMC_PERMITE_EMAIL => 13, UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL => 14, UsuarioMcafeePeer::UMC_MOVIL => 15, UsuarioMcafeePeer::UMC_CUSTOMER_ID => 16, UsuarioMcafeePeer::UMC_ELIMINADO => 17, UsuarioMcafeePeer::CREATED_AT => 18, UsuarioMcafeePeer::UPDATED_AT => 19, ),
BasePeer::TYPE_RAW_COLNAME => array ('UMC_ID' => 0, 'UMC_MCAFEE_TIPO_PRODUCTO' => 1, 'UMC_MCAFEE_AFFID' => 2, 'UMC_MCAFEE_CCID' => 3, 'UMC_MCAFEE_EMAIL' => 4, 'UMC_MCAFEE_SKU' => 5, 'UMC_MCAFEE_KEYCARD' => 6, 'UMC_MCAFEE_STATUS' => 7, 'UMC_MOVISTAR_ACTIVO' => 8, 'UMC_MOVISTAR_ANY' => 9, 'UMC_MOVISTAR_EMAIL' => 10, 'UMC_MOVISTAR_RUT' => 11, 'UMC_PARAMETRO_ENCRIPTADO' => 12, 'UMC_PERMITE_EMAIL' => 13, 'UMC_FECHA_DESUSCRIPCION_EMAIL' => 14, 'UMC_MOVIL' => 15, 'UMC_CUSTOMER_ID' => 16, 'UMC_ELIMINADO' => 17, 'CREATED_AT' => 18, 'UPDATED_AT' => 19, ),
BasePeer::TYPE_FIELDNAME => array ('umc_id' => 0, 'umc_mcafee_tipo_producto' => 1, 'umc_mcafee_affid' => 2, 'umc_mcafee_ccid' => 3, 'umc_mcafee_email' => 4, 'umc_mcafee_sku' => 5, 'umc_mcafee_keycard' => 6, 'umc_mcafee_status' => 7, 'umc_movistar_activo' => 8, 'umc_movistar_any' => 9, 'umc_movistar_email' => 10, 'umc_movistar_rut' => 11, 'umc_parametro_encriptado' => 12, 'umc_permite_email' => 13, 'umc_fecha_desuscripcion_email' => 14, 'umc_movil' => 15, 'umc_customer_id' => 16, 'umc_eliminado' => 17, 'created_at' => 18, 'updated_at' => 19, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, )
BasePeer::TYPE_PHPNAME => array ('UmcId' => 0, 'UmcMcafeeTipoProducto' => 1, 'UmcMcafeeAffid' => 2, 'UmcMcafeeCcid' => 3, 'UmcMcafeeEmail' => 4, 'UmcMcafeeSku' => 5, 'UmcMcafeeKeycard' => 6, 'UmcMcafeeStatus' => 7, 'UmcMovistarActivo' => 8, 'UmcMovistarAny' => 9, 'UmcMovistarEmail' => 10, 'UmcMovistarRut' => 11, 'UmcParametroEncriptado' => 12, 'UmcPermiteEmail' => 13, 'UmcFechaDesuscripcionEmail' => 14, 'UmcMovil' => 15, 'UmcFijo' => 16, 'UmcCustomerId' => 17, 'UmcEliminado' => 18, 'CreatedAt' => 19, 'UpdatedAt' => 20, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('umcId' => 0, 'umcMcafeeTipoProducto' => 1, 'umcMcafeeAffid' => 2, 'umcMcafeeCcid' => 3, 'umcMcafeeEmail' => 4, 'umcMcafeeSku' => 5, 'umcMcafeeKeycard' => 6, 'umcMcafeeStatus' => 7, 'umcMovistarActivo' => 8, 'umcMovistarAny' => 9, 'umcMovistarEmail' => 10, 'umcMovistarRut' => 11, 'umcParametroEncriptado' => 12, 'umcPermiteEmail' => 13, 'umcFechaDesuscripcionEmail' => 14, 'umcMovil' => 15, 'umcFijo' => 16, 'umcCustomerId' => 17, 'umcEliminado' => 18, 'createdAt' => 19, 'updatedAt' => 20, ),
BasePeer::TYPE_COLNAME => array (UsuarioMcafeePeer::UMC_ID => 0, UsuarioMcafeePeer::UMC_MCAFEE_TIPO_PRODUCTO => 1, UsuarioMcafeePeer::UMC_MCAFEE_AFFID => 2, UsuarioMcafeePeer::UMC_MCAFEE_CCID => 3, UsuarioMcafeePeer::UMC_MCAFEE_EMAIL => 4, UsuarioMcafeePeer::UMC_MCAFEE_SKU => 5, UsuarioMcafeePeer::UMC_MCAFEE_KEYCARD => 6, UsuarioMcafeePeer::UMC_MCAFEE_STATUS => 7, UsuarioMcafeePeer::UMC_MOVISTAR_ACTIVO => 8, UsuarioMcafeePeer::UMC_MOVISTAR_ANY => 9, UsuarioMcafeePeer::UMC_MOVISTAR_EMAIL => 10, UsuarioMcafeePeer::UMC_MOVISTAR_RUT => 11, UsuarioMcafeePeer::UMC_PARAMETRO_ENCRIPTADO => 12, UsuarioMcafeePeer::UMC_PERMITE_EMAIL => 13, UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL => 14, UsuarioMcafeePeer::UMC_MOVIL => 15, UsuarioMcafeePeer::UMC_FIJO => 16, UsuarioMcafeePeer::UMC_CUSTOMER_ID => 17, UsuarioMcafeePeer::UMC_ELIMINADO => 18, UsuarioMcafeePeer::CREATED_AT => 19, UsuarioMcafeePeer::UPDATED_AT => 20, ),
BasePeer::TYPE_RAW_COLNAME => array ('UMC_ID' => 0, 'UMC_MCAFEE_TIPO_PRODUCTO' => 1, 'UMC_MCAFEE_AFFID' => 2, 'UMC_MCAFEE_CCID' => 3, 'UMC_MCAFEE_EMAIL' => 4, 'UMC_MCAFEE_SKU' => 5, 'UMC_MCAFEE_KEYCARD' => 6, 'UMC_MCAFEE_STATUS' => 7, 'UMC_MOVISTAR_ACTIVO' => 8, 'UMC_MOVISTAR_ANY' => 9, 'UMC_MOVISTAR_EMAIL' => 10, 'UMC_MOVISTAR_RUT' => 11, 'UMC_PARAMETRO_ENCRIPTADO' => 12, 'UMC_PERMITE_EMAIL' => 13, 'UMC_FECHA_DESUSCRIPCION_EMAIL' => 14, 'UMC_MOVIL' => 15, 'UMC_FIJO' => 16, 'UMC_CUSTOMER_ID' => 17, 'UMC_ELIMINADO' => 18, 'CREATED_AT' => 19, 'UPDATED_AT' => 20, ),
BasePeer::TYPE_FIELDNAME => array ('umc_id' => 0, 'umc_mcafee_tipo_producto' => 1, 'umc_mcafee_affid' => 2, 'umc_mcafee_ccid' => 3, 'umc_mcafee_email' => 4, 'umc_mcafee_sku' => 5, 'umc_mcafee_keycard' => 6, 'umc_mcafee_status' => 7, 'umc_movistar_activo' => 8, 'umc_movistar_any' => 9, 'umc_movistar_email' => 10, 'umc_movistar_rut' => 11, 'umc_parametro_encriptado' => 12, 'umc_permite_email' => 13, 'umc_fecha_desuscripcion_email' => 14, 'umc_movil' => 15, 'umc_fijo' => 16, 'umc_customer_id' => 17, 'umc_eliminado' => 18, 'created_at' => 19, 'updated_at' => 20, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, )
);
/**
......@@ -226,6 +229,7 @@ abstract class BaseUsuarioMcafeePeer
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_PERMITE_EMAIL);
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_FECHA_DESUSCRIPCION_EMAIL);
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_MOVIL);
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_FIJO);
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_CUSTOMER_ID);
$criteria->addSelectColumn(UsuarioMcafeePeer::UMC_ELIMINADO);
$criteria->addSelectColumn(UsuarioMcafeePeer::CREATED_AT);
......@@ -247,6 +251,7 @@ abstract class BaseUsuarioMcafeePeer
$criteria->addSelectColumn($alias . '.umc_permite_email');
$criteria->addSelectColumn($alias . '.umc_fecha_desuscripcion_email');
$criteria->addSelectColumn($alias . '.umc_movil');
$criteria->addSelectColumn($alias . '.umc_fijo');
$criteria->addSelectColumn($alias . '.umc_customer_id');
$criteria->addSelectColumn($alias . '.umc_eliminado');
$criteria->addSelectColumn($alias . '.created_at');
......
......@@ -15,6 +15,7 @@ use \PropelPDO;
use AppBundle\Model\EnvioEmail;
use AppBundle\Model\McafeeTransaccion;
use AppBundle\Model\McafeeTransaccionPendiente;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\Tracking;
use AppBundle\Model\UsuarioMcafee;
use AppBundle\Model\UsuarioMcafeePeer;
......@@ -37,6 +38,7 @@ use AppBundle\Model\UsuarioMcafeeQuery;
* @method UsuarioMcafeeQuery orderByUmcPermiteEmail($order = Criteria::ASC) Order by the umc_permite_email column
* @method UsuarioMcafeeQuery orderByUmcFechaDesuscripcionEmail($order = Criteria::ASC) Order by the umc_fecha_desuscripcion_email column
* @method UsuarioMcafeeQuery orderByUmcMovil($order = Criteria::ASC) Order by the umc_movil column
* @method UsuarioMcafeeQuery orderByUmcFijo($order = Criteria::ASC) Order by the umc_fijo column
* @method UsuarioMcafeeQuery orderByUmcCustomerId($order = Criteria::ASC) Order by the umc_customer_id column
* @method UsuarioMcafeeQuery orderByUmcEliminado($order = Criteria::ASC) Order by the umc_eliminado column
* @method UsuarioMcafeeQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
......@@ -58,6 +60,7 @@ use AppBundle\Model\UsuarioMcafeeQuery;
* @method UsuarioMcafeeQuery groupByUmcPermiteEmail() Group by the umc_permite_email column
* @method UsuarioMcafeeQuery groupByUmcFechaDesuscripcionEmail() Group by the umc_fecha_desuscripcion_email column
* @method UsuarioMcafeeQuery groupByUmcMovil() Group by the umc_movil column
* @method UsuarioMcafeeQuery groupByUmcFijo() Group by the umc_fijo column
* @method UsuarioMcafeeQuery groupByUmcCustomerId() Group by the umc_customer_id column
* @method UsuarioMcafeeQuery groupByUmcEliminado() Group by the umc_eliminado column
* @method UsuarioMcafeeQuery groupByCreatedAt() Group by the created_at column
......@@ -79,6 +82,10 @@ use AppBundle\Model\UsuarioMcafeeQuery;
* @method UsuarioMcafeeQuery rightJoinMcafeeTransaccionPendiente($relationAlias = null) Adds a RIGHT JOIN clause to the query using the McafeeTransaccionPendiente relation
* @method UsuarioMcafeeQuery innerJoinMcafeeTransaccionPendiente($relationAlias = null) Adds a INNER JOIN clause to the query using the McafeeTransaccionPendiente relation
*
* @method UsuarioMcafeeQuery leftJoinMcafeeUltimoProcesoNormalizacion($relationAlias = null) Adds a LEFT JOIN clause to the query using the McafeeUltimoProcesoNormalizacion relation
* @method UsuarioMcafeeQuery rightJoinMcafeeUltimoProcesoNormalizacion($relationAlias = null) Adds a RIGHT JOIN clause to the query using the McafeeUltimoProcesoNormalizacion relation
* @method UsuarioMcafeeQuery innerJoinMcafeeUltimoProcesoNormalizacion($relationAlias = null) Adds a INNER JOIN clause to the query using the McafeeUltimoProcesoNormalizacion relation
*
* @method UsuarioMcafeeQuery leftJoinTracking($relationAlias = null) Adds a LEFT JOIN clause to the query using the Tracking relation
* @method UsuarioMcafeeQuery rightJoinTracking($relationAlias = null) Adds a RIGHT JOIN clause to the query using the Tracking relation
* @method UsuarioMcafeeQuery innerJoinTracking($relationAlias = null) Adds a INNER JOIN clause to the query using the Tracking relation
......@@ -101,6 +108,7 @@ use AppBundle\Model\UsuarioMcafeeQuery;
* @method UsuarioMcafee findOneByUmcPermiteEmail(boolean $umc_permite_email) Return the first UsuarioMcafee filtered by the umc_permite_email column
* @method UsuarioMcafee findOneByUmcFechaDesuscripcionEmail(string $umc_fecha_desuscripcion_email) Return the first UsuarioMcafee filtered by the umc_fecha_desuscripcion_email column
* @method UsuarioMcafee findOneByUmcMovil(string $umc_movil) Return the first UsuarioMcafee filtered by the umc_movil column
* @method UsuarioMcafee findOneByUmcFijo(string $umc_fijo) Return the first UsuarioMcafee filtered by the umc_fijo column
* @method UsuarioMcafee findOneByUmcCustomerId(string $umc_customer_id) Return the first UsuarioMcafee filtered by the umc_customer_id column
* @method UsuarioMcafee findOneByUmcEliminado(boolean $umc_eliminado) Return the first UsuarioMcafee filtered by the umc_eliminado column
* @method UsuarioMcafee findOneByCreatedAt(string $created_at) Return the first UsuarioMcafee filtered by the created_at column
......@@ -122,6 +130,7 @@ use AppBundle\Model\UsuarioMcafeeQuery;
* @method array findByUmcPermiteEmail(boolean $umc_permite_email) Return UsuarioMcafee objects filtered by the umc_permite_email column
* @method array findByUmcFechaDesuscripcionEmail(string $umc_fecha_desuscripcion_email) Return UsuarioMcafee objects filtered by the umc_fecha_desuscripcion_email column
* @method array findByUmcMovil(string $umc_movil) Return UsuarioMcafee objects filtered by the umc_movil column
* @method array findByUmcFijo(string $umc_fijo) Return UsuarioMcafee objects filtered by the umc_fijo column
* @method array findByUmcCustomerId(string $umc_customer_id) Return UsuarioMcafee objects filtered by the umc_customer_id column
* @method array findByUmcEliminado(boolean $umc_eliminado) Return UsuarioMcafee objects filtered by the umc_eliminado column
* @method array findByCreatedAt(string $created_at) Return UsuarioMcafee objects filtered by the created_at column
......@@ -231,7 +240,7 @@ abstract class BaseUsuarioMcafeeQuery extends ModelCriteria
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `umc_id`, `umc_mcafee_tipo_producto`, `umc_mcafee_affid`, `umc_mcafee_ccid`, `umc_mcafee_email`, `umc_mcafee_sku`, `umc_mcafee_keycard`, `umc_mcafee_status`, `umc_movistar_activo`, `umc_movistar_any`, `umc_movistar_email`, `umc_movistar_rut`, `umc_parametro_encriptado`, `umc_permite_email`, `umc_fecha_desuscripcion_email`, `umc_movil`, `umc_customer_id`, `umc_eliminado`, `created_at`, `updated_at` FROM `usuario_mcafee` WHERE `umc_id` = :p0';
$sql = 'SELECT `umc_id`, `umc_mcafee_tipo_producto`, `umc_mcafee_affid`, `umc_mcafee_ccid`, `umc_mcafee_email`, `umc_mcafee_sku`, `umc_mcafee_keycard`, `umc_mcafee_status`, `umc_movistar_activo`, `umc_movistar_any`, `umc_movistar_email`, `umc_movistar_rut`, `umc_parametro_encriptado`, `umc_permite_email`, `umc_fecha_desuscripcion_email`, `umc_movil`, `umc_fijo`, `umc_customer_id`, `umc_eliminado`, `created_at`, `updated_at` FROM `usuario_mcafee` WHERE `umc_id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
......@@ -833,6 +842,35 @@ abstract class BaseUsuarioMcafeeQuery extends ModelCriteria
return $this->addUsingAlias(UsuarioMcafeePeer::UMC_MOVIL, $umcMovil, $comparison);
}
/**
* Filter the query on the umc_fijo column
*
* Example usage:
* <code>
* $query->filterByUmcFijo('fooValue'); // WHERE umc_fijo = 'fooValue'
* $query->filterByUmcFijo('%fooValue%'); // WHERE umc_fijo LIKE '%fooValue%'
* </code>
*
* @param string $umcFijo The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioMcafeeQuery The current query, for fluid interface
*/
public function filterByUmcFijo($umcFijo = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($umcFijo)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $umcFijo)) {
$umcFijo = str_replace('*', '%', $umcFijo);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioMcafeePeer::UMC_FIJO, $umcFijo, $comparison);
}
/**
* Filter the query on the umc_customer_id column
*
......@@ -1197,6 +1235,80 @@ abstract class BaseUsuarioMcafeeQuery extends ModelCriteria
->useQuery($relationAlias ? $relationAlias : 'McafeeTransaccionPendiente', '\AppBundle\Model\McafeeTransaccionPendienteQuery');
}
/**
* Filter the query by a related McafeeUltimoProcesoNormalizacion object
*
* @param McafeeUltimoProcesoNormalizacion|PropelObjectCollection $mcafeeUltimoProcesoNormalizacion the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioMcafeeQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByMcafeeUltimoProcesoNormalizacion($mcafeeUltimoProcesoNormalizacion, $comparison = null)
{
if ($mcafeeUltimoProcesoNormalizacion instanceof McafeeUltimoProcesoNormalizacion) {
return $this
->addUsingAlias(UsuarioMcafeePeer::UMC_ID, $mcafeeUltimoProcesoNormalizacion->getUltimoUmcId(), $comparison);
} elseif ($mcafeeUltimoProcesoNormalizacion instanceof PropelObjectCollection) {
return $this
->useMcafeeUltimoProcesoNormalizacionQuery()
->filterByPrimaryKeys($mcafeeUltimoProcesoNormalizacion->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByMcafeeUltimoProcesoNormalizacion() only accepts arguments of type McafeeUltimoProcesoNormalizacion or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the McafeeUltimoProcesoNormalizacion relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return UsuarioMcafeeQuery The current query, for fluid interface
*/
public function joinMcafeeUltimoProcesoNormalizacion($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('McafeeUltimoProcesoNormalizacion');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'McafeeUltimoProcesoNormalizacion');
}
return $this;
}
/**
* Use the McafeeUltimoProcesoNormalizacion relation McafeeUltimoProcesoNormalizacion object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery A secondary query class using the current class as primary query
*/
public function useMcafeeUltimoProcesoNormalizacionQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinMcafeeUltimoProcesoNormalizacion($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'McafeeUltimoProcesoNormalizacion', '\AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery');
}
/**
* Filter the query by a related Tracking object
*
......
......@@ -152,6 +152,22 @@
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_normalizacion" phpName="McafeeUltimoProcesoNormalizacion" idMethod="native">
<column name="mun_id" phpName="MunId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umc_id" phpName="UltimoUmcId" type="INTEGER" required="false"/>
<column name="mun_cantidad_procesados" phpName="MunCantidadProcesados" type="INTEGER" required="false"/>
<column name="mun_cantidad_pendientes" phpName="MunCantidadPendientes" type="INTEGER" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuario_mcafee" name="fk_ultimo_umc_id_normla" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_ultimo_umc_id_normla_idx">
<index-column name="ultimo_umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="notificacion_email" phpName="NotificacionEmail" idMethod="native">
<column name="nem_id" phpName="NemId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="eem_id" phpName="EemId" type="INTEGER" required="false"/>
......@@ -244,6 +260,7 @@
<column name="umc_permite_email" phpName="UmcPermiteEmail" type="BOOLEAN" size="1" required="false" defaultValue="true"/>
<column name="umc_fecha_desuscripcion_email" phpName="UmcFechaDesuscripcionEmail" type="TIMESTAMP" required="false"/>
<column name="umc_movil" phpName="UmcMovil" type="VARCHAR" size="200" required="false"/>
<column name="umc_fijo" phpName="UmcFijo" type="VARCHAR" size="200" required="false"/>
<column name="umc_customer_id" phpName="UmcCustomerId" type="VARCHAR" size="250" required="false"/>
<column name="umc_eliminado" phpName="UmcEliminado" type="BOOLEAN" size="1" required="false"/>
......
<?php
namespace BackendBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use AppBundle\Model\UsuarioMcafee;
use AppBundle\Model\UsuarioMcafeeQuery;
use AppBundle\Model\UsuariosMcafeeMovistarMigrar;
use AppBundle\Model\UsuariosMcafeeMovistarMigrarQuery;
use AppBundle\Model\McafeeUltimoProcesoNormalizacion;
use AppBundle\Model\McafeeUltimoProcesoNormalizacionQuery;
use AppBundle\Lib\Utiles;
class McafeeNormalizacionUsuariosMigracionCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('mcafee:normalizacion-usuarios-migracion')
->setDescription('comando que sirve para normalizar errores generados en la migracion.')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln("COMANDO INICIADO.");
$log = Utiles::setLog('command::NormalizacionUsuariosMigracion', 'ws/wsNormalizarUsuariosMcAfee');
$ultimoUsuarioProcesado = null;
$cantidadProcesados = 0;
$cantidadPendientes = 0;
$usuariosMax = Utiles::getParametroConfiguracion("numero_usuarios_normalizar");
$log->debug("obteniendo ultimo indice procesado normalizacion...");
$ultimoIndiceUsuarioProcesado = McafeeUltimoProcesoNormalizacionQuery::create()//arreglar es ultimo indice procesado
->orderByMunId("DESC")
->findOne();
if ($ultimoIndiceUsuarioProcesado == null){
$condicion = "usuarios_mcafee.umc_id > 0";
//else $condicion = "usuarios_mcafee_movistar_migrar.id > ".$ultimoIndiceUsuarioProcesado->getUltimoUmcId();
}else $condicion = "usuarios_mcafee.umc_id >= 0 and usuarios_mcafee.umc_id > ".$ultimoIndiceUsuarioProcesado->getUltimoUmcId();
$log->debug("condicion a analizar ".$condicion);
$log->debug("obteniendo usuarios candidatos a migrar...");
$usuariosANormalizar = UsuarioMcafeeQuery::create()
->where($condicion)
->limit($usuariosMax)
->find();
foreach($usuariosANormalizar as $index=>$usuario):
$log->debug("usuario mcafee a normalizar : ".$usuario->getUmcId());
$strAencriptar = $usuario->getUmcMcafeeCcid()."|".$usuario->getUmcMcafeeEmail();
$log->debug("buscando usuario en tabla usuario movistar migrar por correo mcafee : ".$usuario->getUmcMcafeeEmail());
$usuarioTablaMigracion = UsuariosMcafeeMovistarMigrarQuery::create()
->filterByEmailAddress($usuario->getUmcMcafeeEmail())
->findOne();
if($usuarioTablaMigracion->getFonoContactoMovil1() != 0){
$telMovil = $usuarioTablaMigracion->getFonoContactoMovil1();
}else {
$telMovil = $usuarioTablaMigracion->getFonoContactoMovil2();
}
$usuario->setUmcMovil($telMovil);
$usuario->setUmcFijo($usuarioTablaMigracion->getAreaTel());
$usuario->setUmcParametroEncriptado(Utiles::base64url_encode($strAencriptar));
$usuario->save();
$log->debug("Ultimo usuario procesado : ".$usuario->getUmcId());
$log->debug("descansando el proceso un segundo...");
$cantidadProcesados++;
$ultimoUsuarioProcesado = $usuario;
sleep(1000);
endforeach;
//GENERANDO REGISTRO DE PROCESO
$registroProceso = new McafeeUltimoProcesoNormalizacion();
$registroProceso->setUsuarioMcafee($ultimoUsuarioProcesado);
$registroProceso->setMunCantidadProcesados($cantidadProcesados);
$registroProceso->setMunCantidadPendientes($cantidadPendientes);
$registroProceso->setCreatedAt(new \DateTime());
$registroProceso->setUpdatedAt(new \DateTime());
$registroProceso->save();
$log->debug("Ultimo usuario procesado : ".$ultimoUsuarioProcesado->getUmcId()." | cantidad procesados : $cantidadProcesados | cantidad pendientes : $cantidadPendientes");
$output->writeln('COMANDO FINALIZADO.');
}
}
......@@ -115,36 +115,37 @@ class ResearchController extends Controller {
if ($usuarioMcafee) {
if ($usuarioMcafee->getUmcPermiteEmail() == false) {
$log->warn('usuario ya realizo descarga... umcId:' . $usuarioMcafee->getUmcId());
$tNoPermiteEmail++;
$tNoProcesado++;
$terminarEnvio = true;
$log->debug("eusuario ya realizo descarga...");
$json->setStatusCode(JsonResponse::HTTP_BAD_REQUEST, 'usuario ya realizo descarga...');
$json->setData(array('errors' => 'usuario ya realizo descarga.'));
return $json;
}
if ($terminarEnvio == false && $usuarioMcafee->isTrakingDescarga() == true) {
$log->warn('usuario ya realizo descarga... umcId:' . $usuarioMcafee->getUmcId());
$tYaDescargo++;
$tNoProcesado++;
$terminarEnvio = true;
$json->setStatusCode(JsonResponse::HTTP_BAD_REQUEST, 'usuario ya realizo descarga...');
$json->setData(array('errors' => 'usuario ya realizo descarga.'));
return $json;
}
if ($terminarEnvio == false && $usuarioMcafee->isEmailMovistarCorrecto() == false) {
$log->warn('usuario sin correo... umcId:' . $usuarioMcafee->getUmcId());
$tSinEmail++;
$tNoProcesado++;
$terminarEnvio = true;
$json->setStatusCode(JsonResponse::HTTP_BAD_REQUEST, 'usuario sin correo...');
$json->setData(array('errors' => 'usuario sin correo.'));
return $json;
}
$tProcesado++;
$tPermiteEmail++;
$asunto = Utiles::getParametroConfiguracion("titulo_correo_licencia");
$fromNombreEmail = Utiles::getParametroConfiguracion("from_correo_licencia");
$fromEmail = Utiles::getParametroConfiguracion("alias_correo_licencia");
$email = $usuarioMcafee->getUmcMovistarEmail();
$log->debug($cont . " email:" . $email . " | umcId:" . $usuarioMcafee->getUmcId() . " | campana:" . $campana);
$log->debug(" email:" . $email . " | umcId:" . $usuarioMcafee->getUmcId());
$envioEmail = EnvioEmail::enviarEmailV2($urlDescarga, $urlDesuscripcion, $email, $usuarioMcafee, $emailing, $campana, $asunto, $fromEmail, $fromNombreEmail, EnvioEmail::TIPO_MASIVO, null, $log, $this->getContainer());
$envioEmail = EnvioEmail::enviarEmailV2($urlDescarga, $urlDesuscripcion, $email, $usuarioMcafee, null, 0, $asunto, $fromEmail, $fromNombreEmail, EnvioEmail::TIPO_UNITARIO, null, $log, $this->getContainer());
$log->debug('enviando E-mail...');
if ($envioEmail) {
......@@ -154,7 +155,10 @@ class ResearchController extends Controller {
$json->setData("OK");
return $json;
} else {
$log->debug("el usuario no existe...");
$json->setStatusCode(JsonResponse::HTTP_BAD_REQUEST, 'Ocurrio un error al tratar de enviar el mail...');
$json->setData(array('errors' => 'Ocurrio un error al tratar de enviar el mail.'));
return $json;
}
} else {
$log->debug("el usuario no existe...");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment