* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var McafeeUltimoProcesoNormalizacionPeer
*/
protectedstatic$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
*/
publicfunctiongetMunId()
{
return$this->mun_id;
}
/**
* Get the [ultimo_umc_id] column value.
*
* @return int
*/
publicfunctiongetUltimoUmcId()
{
return$this->ultimo_umc_id;
}
/**
* Get the [mun_cantidad_procesados] column value.
*
* @return int
*/
publicfunctiongetMunCantidadProcesados()
{
return$this->mun_cantidad_procesados;
}
/**
* Get the [mun_cantidad_pendientes] column value.
*
* @return int
*/
publicfunctiongetMunCantidadPendientes()
{
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.
*/
publicfunctiongetCreatedAt($format=null)
{
if($this->created_at===null){
returnnull;
}
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.
returnnull;
}
try{
$dt=newDateTime($this->created_at);
}catch(Exception$x){
thrownewPropelException("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){
returnstrftime($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.
*/
publicfunctiongetUpdatedAt($format=null)
{
if($this->updated_at===null){
returnnull;
}
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.
returnnull;
}
try{
$dt=newDateTime($this->updated_at);
}catch(Exception$x){
thrownewPropelException("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){
returnstrftime($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)
thrownewPropelException("'$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
thrownewPropelException('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.');
$e=newPropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or McafeeUltimoProcesoNormalizacion object; got ".(is_object($value)?get_class($value).' object.':var_export($value,true)));
* @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
* 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
@@ -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
thrownewPropelException('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