Avance comando de creacion usuarios-

tiene codigo de exit dado que no se cual es la respuesta correcta
parent 078dc990
......@@ -153,6 +153,23 @@
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_creacion" phpName="McafeeUltimoProcesoCreacion" idMethod="native">
<column name="muc_id" phpName="MucId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umn_id" phpName="UltimoUmnId" type="INTEGER" required="false"/>
<column name="muc_cantidad_procesados" phpName="MucCantidadProcesados" type="INTEGER" required="false"/>
<column name="muc_cantidad_pendientes" phpName="MucCantidadPendientes" 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="usuarios_mcafee_movistar_nuevos" name="fk_idx_usuario_movistar_nuevo" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umn_id" foreign="id"/>
</foreign-key>
<index name="fk_idx_usuario_movistar_nuevo_idx">
<index-column name="ultimo_umn_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_migracion" phpName="McafeeUltimoProcesoMigracion" idMethod="native">
<column name="mup_id" phpName="MupId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umc_id" phpName="UltimoUmcId" type="INTEGER" required="true"/>
......@@ -290,6 +307,12 @@
<index name="indice_umc_movistar_any">
<index-column name="umc_movistar_any"/>
</index>
<index name="indice_fecha_creacion">
<index-column name="created_at"/>
</index>
<index name="indice_mcafee_mail">
<index-column name="umc_mcafee_email"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
......@@ -331,6 +354,35 @@
<index name="ccid">
<index-column name="Ccid"/>
</index>
<index name="correo">
<index-column name="Email_Address"/>
</index>
<index name="activty">
<index-column name="License_Activity"/>
</index>
<index name="tipo">
<index-column name="Device_Type"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuarios_mcafee_movistar_nuevos" phpName="UsuariosMcafeeMovistarNuevos" idMethod="native">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="id_mov" phpName="IdMov" type="INTEGER" required="true" defaultValue="0"/>
<column name="area_tel" phpName="AreaTel" type="INTEGER" required="false"/>
<column name="rut" phpName="Rut" type="INTEGER" required="false"/>
<column name="nombres" phpName="Nombres" type="VARCHAR" size="45" required="false"/>
<column name="correo" phpName="Correo" type="VARCHAR" size="64" required="false"/>
<column name="fono_contacto_fijo_1" phpName="FonoContactoFijo1" type="INTEGER" required="false"/>
<column name="fono_contacto_fijo_2" phpName="FonoContactoFijo2" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_1" phpName="FonoContactoMovil1" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_2" phpName="FonoContactoMovil2" type="INTEGER" required="false"/>
<column name="ps_6094" phpName="Ps6094" type="INTEGER" required="false"/>
<column name="ps_5679" phpName="Ps5679" type="INTEGER" required="false"/>
<column name="ps_2989" phpName="Ps2989" type="INTEGER" required="false"/>
<column name="ps_6753" phpName="Ps6753" type="INTEGER" required="false"/>
<column name="ps_6759" phpName="Ps6759" type="INTEGER" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
......
......@@ -17,5 +17,9 @@ class DefaultController extends Controller
return $this->render('default/index.html.twig', array(
'base_dir' => realpath($this->container->getParameter('kernel.root_dir').'/..').DIRECTORY_SEPARATOR,
));
}
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoCreacion;
class McafeeUltimoProcesoCreacion extends BaseMcafeeUltimoProcesoCreacion
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoCreacionPeer;
class McafeeUltimoProcesoCreacionPeer extends BaseMcafeeUltimoProcesoCreacionPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseMcafeeUltimoProcesoCreacionQuery;
class McafeeUltimoProcesoCreacionQuery extends BaseMcafeeUltimoProcesoCreacionQuery
{
}
......@@ -23,6 +23,14 @@ class UsuarioMcafee extends BaseUsuarioMcafee {
//print_r($strAencriptar);
return Utiles::base64url_encode($crypt->AES_Encode($strAencriptar));
}
/**
* Genera el identificador del perfil de usuario que es enviado a McAfee
*/
public function generarCostumerId() {
$cId = 'GL_'.$this->getUmcId() . '_' . $this->getUmcFijo();
return $cId;
}
public function getTipoServicio() {
if ($this->getUmcMcafeeTipoProducto() == self::TIPO_MULTIDEVICE) {
......
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'mcafee_ultimo_proceso_creacion' 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 McafeeUltimoProcesoCreacionTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.McafeeUltimoProcesoCreacionTableMap';
/**
* 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_creacion');
$this->setPhpName('McafeeUltimoProcesoCreacion');
$this->setClassname('AppBundle\\Model\\McafeeUltimoProcesoCreacion');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('muc_id', 'MucId', 'INTEGER', true, null, null);
$this->addForeignKey('ultimo_umn_id', 'UltimoUmnId', 'INTEGER', 'usuarios_mcafee_movistar_nuevos', 'id', false, null, null);
$this->addColumn('muc_cantidad_procesados', 'MucCantidadProcesados', 'INTEGER', false, null, null);
$this->addColumn('muc_cantidad_pendientes', 'MucCantidadPendientes', '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('UsuariosMcafeeMovistarNuevos', 'AppBundle\\Model\\UsuariosMcafeeMovistarNuevos', RelationMap::MANY_TO_ONE, array('ultimo_umn_id' => '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()
} // McafeeUltimoProcesoCreacionTableMap
......@@ -65,6 +65,7 @@ class UsuariosMcafeeMovistarNuevosTableMap extends TableMap
*/
public function buildRelations()
{
$this->addRelation('McafeeUltimoProcesoCreacion', 'AppBundle\\Model\\McafeeUltimoProcesoCreacion', RelationMap::ONE_TO_MANY, array('id' => 'ultimo_umn_id', ), null, null, 'McafeeUltimoProcesoCreacions');
} // buildRelations()
} // UsuariosMcafeeMovistarNuevosTableMap
<?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\McafeeUltimoProcesoCreacion;
use AppBundle\Model\McafeeUltimoProcesoCreacionPeer;
use AppBundle\Model\McafeeUltimoProcesoCreacionQuery;
use AppBundle\Model\UsuariosMcafeeMovistarNuevos;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery;
abstract class BaseMcafeeUltimoProcesoCreacion extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'AppBundle\\Model\\McafeeUltimoProcesoCreacionPeer';
/**
* 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 McafeeUltimoProcesoCreacionPeer
*/
protected static $peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected $startCopy = false;
/**
* The value for the muc_id field.
* @var int
*/
protected $muc_id;
/**
* The value for the ultimo_umn_id field.
* @var int
*/
protected $ultimo_umn_id;
/**
* The value for the muc_cantidad_procesados field.
* @var int
*/
protected $muc_cantidad_procesados;
/**
* The value for the muc_cantidad_pendientes field.
* @var int
*/
protected $muc_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 UsuariosMcafeeMovistarNuevos
*/
protected $aUsuariosMcafeeMovistarNuevos;
/**
* 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 [muc_id] column value.
*
* @return int
*/
public function getMucId()
{
return $this->muc_id;
}
/**
* Get the [ultimo_umn_id] column value.
*
* @return int
*/
public function getUltimoUmnId()
{
return $this->ultimo_umn_id;
}
/**
* Get the [muc_cantidad_procesados] column value.
*
* @return int
*/
public function getMucCantidadProcesados()
{
return $this->muc_cantidad_procesados;
}
/**
* Get the [muc_cantidad_pendientes] column value.
*
* @return int
*/
public function getMucCantidadPendientes()
{
return $this->muc_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 [muc_id] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
*/
public function setMucId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->muc_id !== $v) {
$this->muc_id = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoCreacionPeer::MUC_ID;
}
return $this;
} // setMucId()
/**
* Set the value of [ultimo_umn_id] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
*/
public function setUltimoUmnId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->ultimo_umn_id !== $v) {
$this->ultimo_umn_id = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID;
}
if ($this->aUsuariosMcafeeMovistarNuevos !== null && $this->aUsuariosMcafeeMovistarNuevos->getId() !== $v) {
$this->aUsuariosMcafeeMovistarNuevos = null;
}
return $this;
} // setUltimoUmnId()
/**
* Set the value of [muc_cantidad_procesados] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
*/
public function setMucCantidadProcesados($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->muc_cantidad_procesados !== $v) {
$this->muc_cantidad_procesados = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS;
}
return $this;
} // setMucCantidadProcesados()
/**
* Set the value of [muc_cantidad_pendientes] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
*/
public function setMucCantidadPendientes($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->muc_cantidad_pendientes !== $v) {
$this->muc_cantidad_pendientes = $v;
$this->modifiedColumns[] = McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES;
}
return $this;
} // setMucCantidadPendientes()
/**
* 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 McafeeUltimoProcesoCreacion 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[] = McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion 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[] = McafeeUltimoProcesoCreacionPeer::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->muc_id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->ultimo_umn_id = ($row[$startcol + 1] !== null) ? (int) $row[$startcol + 1] : null;
$this->muc_cantidad_procesados = ($row[$startcol + 2] !== null) ? (int) $row[$startcol + 2] : null;
$this->muc_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 = McafeeUltimoProcesoCreacionPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating McafeeUltimoProcesoCreacion 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->aUsuariosMcafeeMovistarNuevos !== null && $this->ultimo_umn_id !== $this->aUsuariosMcafeeMovistarNuevos->getId()) {
$this->aUsuariosMcafeeMovistarNuevos = 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(McafeeUltimoProcesoCreacionPeer::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 = McafeeUltimoProcesoCreacionPeer::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->aUsuariosMcafeeMovistarNuevos = 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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
try {
$deleteQuery = McafeeUltimoProcesoCreacionQuery::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(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::CREATED_AT)) {
$this->setCreatedAt(time());
}
if (!$this->isColumnModified(McafeeUltimoProcesoCreacionPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
} else {
$ret = $ret && $this->preUpdate($con);
// timestampable behavior
if ($this->isModified() && !$this->isColumnModified(McafeeUltimoProcesoCreacionPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
}
if ($ret) {
$affectedRows = $this->doSave($con);
if ($isInsert) {
$this->postInsert($con);
} else {
$this->postUpdate($con);
}
$this->postSave($con);
McafeeUltimoProcesoCreacionPeer::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->aUsuariosMcafeeMovistarNuevos !== null) {
if ($this->aUsuariosMcafeeMovistarNuevos->isModified() || $this->aUsuariosMcafeeMovistarNuevos->isNew()) {
$affectedRows += $this->aUsuariosMcafeeMovistarNuevos->save($con);
}
$this->setUsuariosMcafeeMovistarNuevos($this->aUsuariosMcafeeMovistarNuevos);
}
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[] = McafeeUltimoProcesoCreacionPeer::MUC_ID;
if (null !== $this->muc_id) {
throw new PropelException('Cannot insert a value for auto-increment primary key (' . McafeeUltimoProcesoCreacionPeer::MUC_ID . ')');
}
// check the columns in natural order for more readable SQL queries
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_ID)) {
$modifiedColumns[':p' . $index++] = '`muc_id`';
}
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID)) {
$modifiedColumns[':p' . $index++] = '`ultimo_umn_id`';
}
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS)) {
$modifiedColumns[':p' . $index++] = '`muc_cantidad_procesados`';
}
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES)) {
$modifiedColumns[':p' . $index++] = '`muc_cantidad_pendientes`';
}
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::CREATED_AT)) {
$modifiedColumns[':p' . $index++] = '`created_at`';
}
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::UPDATED_AT)) {
$modifiedColumns[':p' . $index++] = '`updated_at`';
}
$sql = sprintf(
'INSERT INTO `mcafee_ultimo_proceso_creacion` (%s) VALUES (%s)',
implode(', ', $modifiedColumns),
implode(', ', array_keys($modifiedColumns))
);
try {
$stmt = $con->prepare($sql);
foreach ($modifiedColumns as $identifier => $columnName) {
switch ($columnName) {
case '`muc_id`':
$stmt->bindValue($identifier, $this->muc_id, PDO::PARAM_INT);
break;
case '`ultimo_umn_id`':
$stmt->bindValue($identifier, $this->ultimo_umn_id, PDO::PARAM_INT);
break;
case '`muc_cantidad_procesados`':
$stmt->bindValue($identifier, $this->muc_cantidad_procesados, PDO::PARAM_INT);
break;
case '`muc_cantidad_pendientes`':
$stmt->bindValue($identifier, $this->muc_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->setMucId($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->aUsuariosMcafeeMovistarNuevos !== null) {
if (!$this->aUsuariosMcafeeMovistarNuevos->validate($columns)) {
$failureMap = array_merge($failureMap, $this->aUsuariosMcafeeMovistarNuevos->getValidationFailures());
}
}
if (($retval = McafeeUltimoProcesoCreacionPeer::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 = McafeeUltimoProcesoCreacionPeer::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->getMucId();
break;
case 1:
return $this->getUltimoUmnId();
break;
case 2:
return $this->getMucCantidadProcesados();
break;
case 3:
return $this->getMucCantidadPendientes();
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['McafeeUltimoProcesoCreacion'][$this->getPrimaryKey()])) {
return '*RECURSION*';
}
$alreadyDumpedObjects['McafeeUltimoProcesoCreacion'][$this->getPrimaryKey()] = true;
$keys = McafeeUltimoProcesoCreacionPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getMucId(),
$keys[1] => $this->getUltimoUmnId(),
$keys[2] => $this->getMucCantidadProcesados(),
$keys[3] => $this->getMucCantidadPendientes(),
$keys[4] => $this->getCreatedAt(),
$keys[5] => $this->getUpdatedAt(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
$result[$key] = $virtualColumn;
}
if ($includeForeignObjects) {
if (null !== $this->aUsuariosMcafeeMovistarNuevos) {
$result['UsuariosMcafeeMovistarNuevos'] = $this->aUsuariosMcafeeMovistarNuevos->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 = McafeeUltimoProcesoCreacionPeer::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->setMucId($value);
break;
case 1:
$this->setUltimoUmnId($value);
break;
case 2:
$this->setMucCantidadProcesados($value);
break;
case 3:
$this->setMucCantidadPendientes($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 = McafeeUltimoProcesoCreacionPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setMucId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setUltimoUmnId($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setMucCantidadProcesados($arr[$keys[2]]);
if (array_key_exists($keys[3], $arr)) $this->setMucCantidadPendientes($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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_ID)) $criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, $this->muc_id);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID)) $criteria->add(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $this->ultimo_umn_id);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS)) $criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS, $this->muc_cantidad_procesados);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES)) $criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES, $this->muc_cantidad_pendientes);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::CREATED_AT)) $criteria->add(McafeeUltimoProcesoCreacionPeer::CREATED_AT, $this->created_at);
if ($this->isColumnModified(McafeeUltimoProcesoCreacionPeer::UPDATED_AT)) $criteria->add(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, $this->muc_id);
return $criteria;
}
/**
* Returns the primary key for this object (row).
* @return int
*/
public function getPrimaryKey()
{
return $this->getMucId();
}
/**
* Generic method to set the primary key (muc_id column).
*
* @param int $key Primary key.
* @return void
*/
public function setPrimaryKey($key)
{
$this->setMucId($key);
}
/**
* Returns true if the primary key for this object is null.
* @return boolean
*/
public function isPrimaryKeyNull()
{
return null === $this->getMucId();
}
/**
* 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 McafeeUltimoProcesoCreacion (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->setUltimoUmnId($this->getUltimoUmnId());
$copyObj->setMucCantidadProcesados($this->getMucCantidadProcesados());
$copyObj->setMucCantidadPendientes($this->getMucCantidadPendientes());
$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->setMucId(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 McafeeUltimoProcesoCreacion 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 McafeeUltimoProcesoCreacionPeer
*/
public function getPeer()
{
if (self::$peer === null) {
self::$peer = new McafeeUltimoProcesoCreacionPeer();
}
return self::$peer;
}
/**
* Declares an association between this object and a UsuariosMcafeeMovistarNuevos object.
*
* @param UsuariosMcafeeMovistarNuevos $v
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
* @throws PropelException
*/
public function setUsuariosMcafeeMovistarNuevos(UsuariosMcafeeMovistarNuevos $v = null)
{
if ($v === null) {
$this->setUltimoUmnId(NULL);
} else {
$this->setUltimoUmnId($v->getId());
}
$this->aUsuariosMcafeeMovistarNuevos = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the UsuariosMcafeeMovistarNuevos object, it will not be re-added.
if ($v !== null) {
$v->addMcafeeUltimoProcesoCreacion($this);
}
return $this;
}
/**
* Get the associated UsuariosMcafeeMovistarNuevos object
*
* @param PropelPDO $con Optional Connection object.
* @param $doQuery Executes a query to get the object if required
* @return UsuariosMcafeeMovistarNuevos The associated UsuariosMcafeeMovistarNuevos object.
* @throws PropelException
*/
public function getUsuariosMcafeeMovistarNuevos(PropelPDO $con = null, $doQuery = true)
{
if ($this->aUsuariosMcafeeMovistarNuevos === null && ($this->ultimo_umn_id !== null) && $doQuery) {
$this->aUsuariosMcafeeMovistarNuevos = UsuariosMcafeeMovistarNuevosQuery::create()->findPk($this->ultimo_umn_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->aUsuariosMcafeeMovistarNuevos->addMcafeeUltimoProcesoCreacions($this);
*/
}
return $this->aUsuariosMcafeeMovistarNuevos;
}
/**
* Clears the current object and sets all attributes to their default values
*/
public function clear()
{
$this->muc_id = null;
$this->ultimo_umn_id = null;
$this->muc_cantidad_procesados = null;
$this->muc_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->aUsuariosMcafeeMovistarNuevos instanceof Persistent) {
$this->aUsuariosMcafeeMovistarNuevos->clearAllReferences($deep);
}
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
$this->aUsuariosMcafeeMovistarNuevos = null;
}
/**
* return the string representation of this object
*
* @return string
*/
public function __toString()
{
return (string) $this->exportTo(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion The current object (for fluent API support)
*/
public function keepUpdateDateUnchanged()
{
$this->modifiedColumns[] = McafeeUltimoProcesoCreacionPeer::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\McafeeUltimoProcesoCreacion;
use AppBundle\Model\McafeeUltimoProcesoCreacionPeer;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosPeer;
use AppBundle\Model\map\McafeeUltimoProcesoCreacionTableMap;
abstract class BaseMcafeeUltimoProcesoCreacionPeer
{
/** the default database name for this class */
const DATABASE_NAME = 'default';
/** the table name for this class */
const TABLE_NAME = 'mcafee_ultimo_proceso_creacion';
/** the related Propel class for this table */
const OM_CLASS = 'AppBundle\\Model\\McafeeUltimoProcesoCreacion';
/** the related TableMap class for this table */
const TM_CLASS = 'AppBundle\\Model\\map\\McafeeUltimoProcesoCreacionTableMap';
/** 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 muc_id field */
const MUC_ID = 'mcafee_ultimo_proceso_creacion.muc_id';
/** the column name for the ultimo_umn_id field */
const ULTIMO_UMN_ID = 'mcafee_ultimo_proceso_creacion.ultimo_umn_id';
/** the column name for the muc_cantidad_procesados field */
const MUC_CANTIDAD_PROCESADOS = 'mcafee_ultimo_proceso_creacion.muc_cantidad_procesados';
/** the column name for the muc_cantidad_pendientes field */
const MUC_CANTIDAD_PENDIENTES = 'mcafee_ultimo_proceso_creacion.muc_cantidad_pendientes';
/** the column name for the created_at field */
const CREATED_AT = 'mcafee_ultimo_proceso_creacion.created_at';
/** the column name for the updated_at field */
const UPDATED_AT = 'mcafee_ultimo_proceso_creacion.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 McafeeUltimoProcesoCreacion objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* queries.
* @var array McafeeUltimoProcesoCreacion[]
*/
public static $instances = array();
/**
* holds an array of fieldnames
*
* first dimension keys are the type constants
* e.g. McafeeUltimoProcesoCreacionPeer::$fieldNames[McafeeUltimoProcesoCreacionPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('MucId', 'UltimoUmnId', 'MucCantidadProcesados', 'MucCantidadPendientes', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('mucId', 'ultimoUmnId', 'mucCantidadProcesados', 'mucCantidadPendientes', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (McafeeUltimoProcesoCreacionPeer::MUC_ID, McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS, McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES, McafeeUltimoProcesoCreacionPeer::CREATED_AT, McafeeUltimoProcesoCreacionPeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('MUC_ID', 'ULTIMO_UMN_ID', 'MUC_CANTIDAD_PROCESADOS', 'MUC_CANTIDAD_PENDIENTES', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('muc_id', 'ultimo_umn_id', 'muc_cantidad_procesados', 'muc_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. McafeeUltimoProcesoCreacionPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('MucId' => 0, 'UltimoUmnId' => 1, 'MucCantidadProcesados' => 2, 'MucCantidadPendientes' => 3, 'CreatedAt' => 4, 'UpdatedAt' => 5, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('mucId' => 0, 'ultimoUmnId' => 1, 'mucCantidadProcesados' => 2, 'mucCantidadPendientes' => 3, 'createdAt' => 4, 'updatedAt' => 5, ),
BasePeer::TYPE_COLNAME => array (McafeeUltimoProcesoCreacionPeer::MUC_ID => 0, McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID => 1, McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS => 2, McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES => 3, McafeeUltimoProcesoCreacionPeer::CREATED_AT => 4, McafeeUltimoProcesoCreacionPeer::UPDATED_AT => 5, ),
BasePeer::TYPE_RAW_COLNAME => array ('MUC_ID' => 0, 'ULTIMO_UMN_ID' => 1, 'MUC_CANTIDAD_PROCESADOS' => 2, 'MUC_CANTIDAD_PENDIENTES' => 3, 'CREATED_AT' => 4, 'UPDATED_AT' => 5, ),
BasePeer::TYPE_FIELDNAME => array ('muc_id' => 0, 'ultimo_umn_id' => 1, 'muc_cantidad_procesados' => 2, 'muc_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 = McafeeUltimoProcesoCreacionPeer::getFieldNames($toType);
$key = isset(McafeeUltimoProcesoCreacionPeer::$fieldKeys[$fromType][$name]) ? McafeeUltimoProcesoCreacionPeer::$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(McafeeUltimoProcesoCreacionPeer::$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, McafeeUltimoProcesoCreacionPeer::$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 McafeeUltimoProcesoCreacionPeer::$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. McafeeUltimoProcesoCreacionPeer::COLUMN_NAME).
* @return string
*/
public static function alias($alias, $column)
{
return str_replace(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::MUC_ID);
$criteria->addSelectColumn(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID);
$criteria->addSelectColumn(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS);
$criteria->addSelectColumn(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES);
$criteria->addSelectColumn(McafeeUltimoProcesoCreacionPeer::CREATED_AT);
$criteria->addSelectColumn(McafeeUltimoProcesoCreacionPeer::UPDATED_AT);
} else {
$criteria->addSelectColumn($alias . '.muc_id');
$criteria->addSelectColumn($alias . '.ultimo_umn_id');
$criteria->addSelectColumn($alias . '.muc_cantidad_procesados');
$criteria->addSelectColumn($alias . '.muc_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(McafeeUltimoProcesoCreacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME); // Set the correct dbName
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion
* @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 = McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacionPeer::populateObjects(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion $obj A McafeeUltimoProcesoCreacion 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->getMucId();
} // if key === null
McafeeUltimoProcesoCreacionPeer::$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 McafeeUltimoProcesoCreacion 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 McafeeUltimoProcesoCreacion) {
$key = (string) $value->getMucId();
} 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 McafeeUltimoProcesoCreacion object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
throw $e;
}
unset(McafeeUltimoProcesoCreacionPeer::$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 McafeeUltimoProcesoCreacion 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(McafeeUltimoProcesoCreacionPeer::$instances[$key])) {
return McafeeUltimoProcesoCreacionPeer::$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 (McafeeUltimoProcesoCreacionPeer::$instances as $instance) {
$instance->clearAllReferences(true);
}
}
McafeeUltimoProcesoCreacionPeer::$instances = array();
}
/**
* Method to invalidate the instance pool of all tables related to mcafee_ultimo_proceso_creacion
* 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 = McafeeUltimoProcesoCreacionPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = McafeeUltimoProcesoCreacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = McafeeUltimoProcesoCreacionPeer::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;
McafeeUltimoProcesoCreacionPeer::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 (McafeeUltimoProcesoCreacion object, last column rank)
*/
public static function populateObject($row, $startcol = 0)
{
$key = McafeeUltimoProcesoCreacionPeer::getPrimaryKeyHashFromRow($row, $startcol);
if (null !== ($obj = McafeeUltimoProcesoCreacionPeer::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 + McafeeUltimoProcesoCreacionPeer::NUM_HYDRATE_COLUMNS;
} else {
$cls = McafeeUltimoProcesoCreacionPeer::OM_CLASS;
$obj = new $cls();
$col = $obj->hydrate($row, $startcol);
McafeeUltimoProcesoCreacionPeer::addInstanceToPool($obj, $key);
}
return array($obj, $col);
}
/**
* Returns the number of rows matching criteria, joining the related UsuariosMcafeeMovistarNuevos 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 doCountJoinUsuariosMcafeeMovistarNuevos(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(McafeeUltimoProcesoCreacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, UsuariosMcafeeMovistarNuevosPeer::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 McafeeUltimoProcesoCreacion objects pre-filled with their UsuariosMcafeeMovistarNuevos 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 McafeeUltimoProcesoCreacion objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinUsuariosMcafeeMovistarNuevos(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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
}
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
$startcol = McafeeUltimoProcesoCreacionPeer::NUM_HYDRATE_COLUMNS;
UsuariosMcafeeMovistarNuevosPeer::addSelectColumns($criteria);
$criteria->addJoin(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, UsuariosMcafeeMovistarNuevosPeer::ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = McafeeUltimoProcesoCreacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = McafeeUltimoProcesoCreacionPeer::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 = McafeeUltimoProcesoCreacionPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
McafeeUltimoProcesoCreacionPeer::addInstanceToPool($obj1, $key1);
} // if $obj1 already loaded
$key2 = UsuariosMcafeeMovistarNuevosPeer::getPrimaryKeyHashFromRow($row, $startcol);
if ($key2 !== null) {
$obj2 = UsuariosMcafeeMovistarNuevosPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuariosMcafeeMovistarNuevosPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol);
UsuariosMcafeeMovistarNuevosPeer::addInstanceToPool($obj2, $key2);
} // if obj2 already loaded
// Add the $obj1 (McafeeUltimoProcesoCreacion) to $obj2 (UsuariosMcafeeMovistarNuevos)
$obj2->addMcafeeUltimoProcesoCreacion($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(McafeeUltimoProcesoCreacionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, UsuariosMcafeeMovistarNuevosPeer::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 McafeeUltimoProcesoCreacion 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 McafeeUltimoProcesoCreacion 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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
}
McafeeUltimoProcesoCreacionPeer::addSelectColumns($criteria);
$startcol2 = McafeeUltimoProcesoCreacionPeer::NUM_HYDRATE_COLUMNS;
UsuariosMcafeeMovistarNuevosPeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + UsuariosMcafeeMovistarNuevosPeer::NUM_HYDRATE_COLUMNS;
$criteria->addJoin(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, UsuariosMcafeeMovistarNuevosPeer::ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = McafeeUltimoProcesoCreacionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = McafeeUltimoProcesoCreacionPeer::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 = McafeeUltimoProcesoCreacionPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
McafeeUltimoProcesoCreacionPeer::addInstanceToPool($obj1, $key1);
} // if obj1 already loaded
// Add objects for joined UsuariosMcafeeMovistarNuevos rows
$key2 = UsuariosMcafeeMovistarNuevosPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = UsuariosMcafeeMovistarNuevosPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuariosMcafeeMovistarNuevosPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
UsuariosMcafeeMovistarNuevosPeer::addInstanceToPool($obj2, $key2);
} // if obj2 loaded
// Add the $obj1 (McafeeUltimoProcesoCreacion) to the collection in $obj2 (UsuariosMcafeeMovistarNuevos)
$obj2->addMcafeeUltimoProcesoCreacion($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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME)->getTable(McafeeUltimoProcesoCreacionPeer::TABLE_NAME);
}
/**
* Add a TableMap instance to the database for this peer class.
*/
public static function buildTableMap()
{
$dbMap = Propel::getDatabaseMap(BaseMcafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
if (!$dbMap->hasTable(BaseMcafeeUltimoProcesoCreacionPeer::TABLE_NAME)) {
$dbMap->addTableObject(new \AppBundle\Model\map\McafeeUltimoProcesoCreacionTableMap());
}
}
/**
* The class that the Peer will make instances of.
*
*
* @return string ClassName
*/
public static function getOMClass($row = 0, $colnum = 0)
{
return McafeeUltimoProcesoCreacionPeer::OM_CLASS;
}
/**
* Performs an INSERT on the database, given a McafeeUltimoProcesoCreacion or Criteria object.
*
* @param mixed $values Criteria or McafeeUltimoProcesoCreacion 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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else {
$criteria = $values->buildCriteria(); // build Criteria from McafeeUltimoProcesoCreacion object
}
if ($criteria->containsKey(McafeeUltimoProcesoCreacionPeer::MUC_ID) && $criteria->keyContainsValue(McafeeUltimoProcesoCreacionPeer::MUC_ID) ) {
throw new PropelException('Cannot insert a value for auto-increment primary key ('.McafeeUltimoProcesoCreacionPeer::MUC_ID.')');
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion or Criteria object.
*
* @param mixed $values Criteria or McafeeUltimoProcesoCreacion 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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$selectCriteria = new Criteria(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(McafeeUltimoProcesoCreacionPeer::MUC_ID);
$value = $criteria->remove(McafeeUltimoProcesoCreacionPeer::MUC_ID);
if ($value) {
$selectCriteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, $value, $comparison);
} else {
$selectCriteria->setPrimaryTableName(McafeeUltimoProcesoCreacionPeer::TABLE_NAME);
}
} else { // $values is McafeeUltimoProcesoCreacion object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
}
// set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
}
/**
* Deletes all rows from the mcafee_ultimo_proceso_creacion 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(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::TABLE_NAME, $con, McafeeUltimoProcesoCreacionPeer::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).
McafeeUltimoProcesoCreacionPeer::clearInstancePool();
McafeeUltimoProcesoCreacionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs a DELETE on the database, given a McafeeUltimoProcesoCreacion or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or McafeeUltimoProcesoCreacion 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(McafeeUltimoProcesoCreacionPeer::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.
McafeeUltimoProcesoCreacionPeer::clearInstancePool();
// rename for clarity
$criteria = clone $values;
} elseif ($values instanceof McafeeUltimoProcesoCreacion) { // it's a model object
// invalidate the cache for this single object
McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, (array) $values, Criteria::IN);
// invalidate the cache for this object(s)
foreach ((array) $values as $singleval) {
McafeeUltimoProcesoCreacionPeer::removeInstanceFromPool($singleval);
}
}
// Set the correct dbName
$criteria->setDbName(McafeeUltimoProcesoCreacionPeer::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);
McafeeUltimoProcesoCreacionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Validates all modified columns of given McafeeUltimoProcesoCreacion 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 McafeeUltimoProcesoCreacion $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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(McafeeUltimoProcesoCreacionPeer::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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, McafeeUltimoProcesoCreacionPeer::TABLE_NAME, $columns);
}
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return McafeeUltimoProcesoCreacion
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = McafeeUltimoProcesoCreacionPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, $pk);
$v = McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion[]
* @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(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$objs = null;
if (empty($pks)) {
$objs = array();
} else {
$criteria = new Criteria(McafeeUltimoProcesoCreacionPeer::DATABASE_NAME);
$criteria->add(McafeeUltimoProcesoCreacionPeer::MUC_ID, $pks, Criteria::IN);
$objs = McafeeUltimoProcesoCreacionPeer::doSelect($criteria, $con);
}
return $objs;
}
} // BaseMcafeeUltimoProcesoCreacionPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseMcafeeUltimoProcesoCreacionPeer::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\McafeeUltimoProcesoCreacion;
use AppBundle\Model\McafeeUltimoProcesoCreacionPeer;
use AppBundle\Model\McafeeUltimoProcesoCreacionQuery;
use AppBundle\Model\UsuariosMcafeeMovistarNuevos;
/**
* @method McafeeUltimoProcesoCreacionQuery orderByMucId($order = Criteria::ASC) Order by the muc_id column
* @method McafeeUltimoProcesoCreacionQuery orderByUltimoUmnId($order = Criteria::ASC) Order by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacionQuery orderByMucCantidadProcesados($order = Criteria::ASC) Order by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacionQuery orderByMucCantidadPendientes($order = Criteria::ASC) Order by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacionQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method McafeeUltimoProcesoCreacionQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method McafeeUltimoProcesoCreacionQuery groupByMucId() Group by the muc_id column
* @method McafeeUltimoProcesoCreacionQuery groupByUltimoUmnId() Group by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacionQuery groupByMucCantidadProcesados() Group by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacionQuery groupByMucCantidadPendientes() Group by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacionQuery groupByCreatedAt() Group by the created_at column
* @method McafeeUltimoProcesoCreacionQuery groupByUpdatedAt() Group by the updated_at column
*
* @method McafeeUltimoProcesoCreacionQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method McafeeUltimoProcesoCreacionQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method McafeeUltimoProcesoCreacionQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method McafeeUltimoProcesoCreacionQuery leftJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a LEFT JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
* @method McafeeUltimoProcesoCreacionQuery rightJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a RIGHT JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
* @method McafeeUltimoProcesoCreacionQuery innerJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a INNER JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
*
* @method McafeeUltimoProcesoCreacion findOne(PropelPDO $con = null) Return the first McafeeUltimoProcesoCreacion matching the query
* @method McafeeUltimoProcesoCreacion findOneOrCreate(PropelPDO $con = null) Return the first McafeeUltimoProcesoCreacion matching the query, or a new McafeeUltimoProcesoCreacion object populated from the query conditions when no match is found
*
* @method McafeeUltimoProcesoCreacion findOneByUltimoUmnId(int $ultimo_umn_id) Return the first McafeeUltimoProcesoCreacion filtered by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacion findOneByMucCantidadProcesados(int $muc_cantidad_procesados) Return the first McafeeUltimoProcesoCreacion filtered by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacion findOneByMucCantidadPendientes(int $muc_cantidad_pendientes) Return the first McafeeUltimoProcesoCreacion filtered by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacion findOneByCreatedAt(string $created_at) Return the first McafeeUltimoProcesoCreacion filtered by the created_at column
* @method McafeeUltimoProcesoCreacion findOneByUpdatedAt(string $updated_at) Return the first McafeeUltimoProcesoCreacion filtered by the updated_at column
*
* @method array findByMucId(int $muc_id) Return McafeeUltimoProcesoCreacion objects filtered by the muc_id column
* @method array findByUltimoUmnId(int $ultimo_umn_id) Return McafeeUltimoProcesoCreacion objects filtered by the ultimo_umn_id column
* @method array findByMucCantidadProcesados(int $muc_cantidad_procesados) Return McafeeUltimoProcesoCreacion objects filtered by the muc_cantidad_procesados column
* @method array findByMucCantidadPendientes(int $muc_cantidad_pendientes) Return McafeeUltimoProcesoCreacion objects filtered by the muc_cantidad_pendientes column
* @method array findByCreatedAt(string $created_at) Return McafeeUltimoProcesoCreacion objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return McafeeUltimoProcesoCreacion objects filtered by the updated_at column
*/
abstract class BaseMcafeeUltimoProcesoCreacionQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseMcafeeUltimoProcesoCreacionQuery 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\\McafeeUltimoProcesoCreacion';
}
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new McafeeUltimoProcesoCreacionQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param McafeeUltimoProcesoCreacionQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return McafeeUltimoProcesoCreacionQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof McafeeUltimoProcesoCreacionQuery) {
return $criteria;
}
$query = new McafeeUltimoProcesoCreacionQuery(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 McafeeUltimoProcesoCreacion|McafeeUltimoProcesoCreacion[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = McafeeUltimoProcesoCreacionPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneByMucId($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 McafeeUltimoProcesoCreacion A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `muc_id`, `ultimo_umn_id`, `muc_cantidad_procesados`, `muc_cantidad_pendientes`, `created_at`, `updated_at` FROM `mcafee_ultimo_proceso_creacion` WHERE `muc_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 McafeeUltimoProcesoCreacion();
$obj->hydrate($row);
McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacion|McafeeUltimoProcesoCreacion[]|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|McafeeUltimoProcesoCreacion[]|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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_ID, $keys, Criteria::IN);
}
/**
* Filter the query on the muc_id column
*
* Example usage:
* <code>
* $query->filterByMucId(1234); // WHERE muc_id = 1234
* $query->filterByMucId(array(12, 34)); // WHERE muc_id IN (12, 34)
* $query->filterByMucId(array('min' => 12)); // WHERE muc_id >= 12
* $query->filterByMucId(array('max' => 12)); // WHERE muc_id <= 12
* </code>
*
* @param mixed $mucId 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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByMucId($mucId = null, $comparison = null)
{
if (is_array($mucId)) {
$useMinMax = false;
if (isset($mucId['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_ID, $mucId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($mucId['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_ID, $mucId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_ID, $mucId, $comparison);
}
/**
* Filter the query on the ultimo_umn_id column
*
* Example usage:
* <code>
* $query->filterByUltimoUmnId(1234); // WHERE ultimo_umn_id = 1234
* $query->filterByUltimoUmnId(array(12, 34)); // WHERE ultimo_umn_id IN (12, 34)
* $query->filterByUltimoUmnId(array('min' => 12)); // WHERE ultimo_umn_id >= 12
* $query->filterByUltimoUmnId(array('max' => 12)); // WHERE ultimo_umn_id <= 12
* </code>
*
* @see filterByUsuariosMcafeeMovistarNuevos()
*
* @param mixed $ultimoUmnId 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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByUltimoUmnId($ultimoUmnId = null, $comparison = null)
{
if (is_array($ultimoUmnId)) {
$useMinMax = false;
if (isset($ultimoUmnId['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $ultimoUmnId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($ultimoUmnId['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $ultimoUmnId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $ultimoUmnId, $comparison);
}
/**
* Filter the query on the muc_cantidad_procesados column
*
* Example usage:
* <code>
* $query->filterByMucCantidadProcesados(1234); // WHERE muc_cantidad_procesados = 1234
* $query->filterByMucCantidadProcesados(array(12, 34)); // WHERE muc_cantidad_procesados IN (12, 34)
* $query->filterByMucCantidadProcesados(array('min' => 12)); // WHERE muc_cantidad_procesados >= 12
* $query->filterByMucCantidadProcesados(array('max' => 12)); // WHERE muc_cantidad_procesados <= 12
* </code>
*
* @param mixed $mucCantidadProcesados 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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByMucCantidadProcesados($mucCantidadProcesados = null, $comparison = null)
{
if (is_array($mucCantidadProcesados)) {
$useMinMax = false;
if (isset($mucCantidadProcesados['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS, $mucCantidadProcesados['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($mucCantidadProcesados['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS, $mucCantidadProcesados['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PROCESADOS, $mucCantidadProcesados, $comparison);
}
/**
* Filter the query on the muc_cantidad_pendientes column
*
* Example usage:
* <code>
* $query->filterByMucCantidadPendientes(1234); // WHERE muc_cantidad_pendientes = 1234
* $query->filterByMucCantidadPendientes(array(12, 34)); // WHERE muc_cantidad_pendientes IN (12, 34)
* $query->filterByMucCantidadPendientes(array('min' => 12)); // WHERE muc_cantidad_pendientes >= 12
* $query->filterByMucCantidadPendientes(array('max' => 12)); // WHERE muc_cantidad_pendientes <= 12
* </code>
*
* @param mixed $mucCantidadPendientes 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 McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function filterByMucCantidadPendientes($mucCantidadPendientes = null, $comparison = null)
{
if (is_array($mucCantidadPendientes)) {
$useMinMax = false;
if (isset($mucCantidadPendientes['min'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES, $mucCantidadPendientes['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($mucCantidadPendientes['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES, $mucCantidadPendientes['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_CANTIDAD_PENDIENTES, $mucCantidadPendientes, $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 McafeeUltimoProcesoCreacionQuery 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(McafeeUltimoProcesoCreacionPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::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 McafeeUltimoProcesoCreacionQuery 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(McafeeUltimoProcesoCreacionPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query by a related UsuariosMcafeeMovistarNuevos object
*
* @param UsuariosMcafeeMovistarNuevos|PropelObjectCollection $usuariosMcafeeMovistarNuevos The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByUsuariosMcafeeMovistarNuevos($usuariosMcafeeMovistarNuevos, $comparison = null)
{
if ($usuariosMcafeeMovistarNuevos instanceof UsuariosMcafeeMovistarNuevos) {
return $this
->addUsingAlias(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $usuariosMcafeeMovistarNuevos->getId(), $comparison);
} elseif ($usuariosMcafeeMovistarNuevos instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(McafeeUltimoProcesoCreacionPeer::ULTIMO_UMN_ID, $usuariosMcafeeMovistarNuevos->toKeyValue('PrimaryKey', 'Id'), $comparison);
} else {
throw new PropelException('filterByUsuariosMcafeeMovistarNuevos() only accepts arguments of type UsuariosMcafeeMovistarNuevos or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function joinUsuariosMcafeeMovistarNuevos($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('UsuariosMcafeeMovistarNuevos');
// 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, 'UsuariosMcafeeMovistarNuevos');
}
return $this;
}
/**
* Use the UsuariosMcafeeMovistarNuevos relation UsuariosMcafeeMovistarNuevos 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\UsuariosMcafeeMovistarNuevosQuery A secondary query class using the current class as primary query
*/
public function useUsuariosMcafeeMovistarNuevosQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinUsuariosMcafeeMovistarNuevos($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'UsuariosMcafeeMovistarNuevos', '\AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery');
}
/**
* Exclude object from result
*
* @param McafeeUltimoProcesoCreacion $mcafeeUltimoProcesoCreacion Object to remove from the list of results
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function prune($mcafeeUltimoProcesoCreacion = null)
{
if ($mcafeeUltimoProcesoCreacion) {
$this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::MUC_ID, $mcafeeUltimoProcesoCreacion->getMucId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(McafeeUltimoProcesoCreacionPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(McafeeUltimoProcesoCreacionPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(McafeeUltimoProcesoCreacionPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(McafeeUltimoProcesoCreacionPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return McafeeUltimoProcesoCreacionQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(McafeeUltimoProcesoCreacionPeer::CREATED_AT);
}
}
......@@ -9,8 +9,12 @@ use \Exception;
use \PDO;
use \Persistent;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\McafeeUltimoProcesoCreacion;
use AppBundle\Model\McafeeUltimoProcesoCreacionQuery;
use AppBundle\Model\UsuariosMcafeeMovistarNuevos;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosPeer;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery;
......@@ -127,6 +131,12 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
*/
protected $ps_6759;
/**
* @var PropelObjectCollection|McafeeUltimoProcesoCreacion[] Collection to store aggregation of McafeeUltimoProcesoCreacion objects.
*/
protected $collMcafeeUltimoProcesoCreacions;
protected $collMcafeeUltimoProcesoCreacionsPartial;
/**
* Flag to prevent endless save loop, if this object is referenced
* by another object which falls in this transaction.
......@@ -147,6 +157,12 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
*/
protected $alreadyInClearAllReferencesDeep = false;
/**
* An array of objects scheduled for deletion.
* @var PropelObjectCollection
*/
protected $mcafeeUltimoProcesoCreacionsScheduledForDeletion = null;
/**
* Applies default values to this object.
* This method should be called from the object's constructor (or
......@@ -770,6 +786,8 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
if ($deep) { // also de-associate any related objects?
$this->collMcafeeUltimoProcesoCreacions = null;
} // if (deep)
}
......@@ -894,6 +912,24 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
$this->resetModified();
}
if ($this->mcafeeUltimoProcesoCreacionsScheduledForDeletion !== null) {
if (!$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion->isEmpty()) {
foreach ($this->mcafeeUltimoProcesoCreacionsScheduledForDeletion as $mcafeeUltimoProcesoCreacion) {
// need to save related object because we set the relation to null
$mcafeeUltimoProcesoCreacion->save($con);
}
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion = null;
}
}
if ($this->collMcafeeUltimoProcesoCreacions !== null) {
foreach ($this->collMcafeeUltimoProcesoCreacions as $referrerFK) {
if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
$affectedRows += $referrerFK->save($con);
}
}
}
$this->alreadyInSave = false;
}
......@@ -1120,6 +1156,14 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
}
if ($this->collMcafeeUltimoProcesoCreacions !== null) {
foreach ($this->collMcafeeUltimoProcesoCreacions as $referrerFK) {
if (!$referrerFK->validate($columns)) {
$failureMap = array_merge($failureMap, $referrerFK->getValidationFailures());
}
}
}
$this->alreadyInValidation = false;
}
......@@ -1217,10 +1261,11 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
* 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())
public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
{
if (isset($alreadyDumpedObjects['UsuariosMcafeeMovistarNuevos'][$this->getPrimaryKey()])) {
return '*RECURSION*';
......@@ -1249,6 +1294,11 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
$result[$key] = $virtualColumn;
}
if ($includeForeignObjects) {
if (null !== $this->collMcafeeUltimoProcesoCreacions) {
$result['McafeeUltimoProcesoCreacions'] = $this->collMcafeeUltimoProcesoCreacions->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
}
}
return $result;
}
......@@ -1469,6 +1519,24 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
$copyObj->setPs2989($this->getPs2989());
$copyObj->setPs6753($this->getPs6753());
$copyObj->setPs6759($this->getPs6759());
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;
foreach ($this->getMcafeeUltimoProcesoCreacions() as $relObj) {
if ($relObj !== $this) { // ensure that we don't try to copy a reference to ourselves
$copyObj->addMcafeeUltimoProcesoCreacion($relObj->copy($deepCopy));
}
}
//unflag object copy
$this->startCopy = false;
} // if ($deepCopy)
if ($makeNew) {
$copyObj->setNew(true);
$copyObj->setId(NULL); // this is a auto-increment column, so set to default value
......@@ -1515,6 +1583,247 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
return self::$peer;
}
/**
* Initializes a collection based on the name of a relation.
* Avoids crafting an 'init[$relationName]s' method name
* that wouldn't work when StandardEnglishPluralizer is used.
*
* @param string $relationName The name of the relation to initialize
* @return void
*/
public function initRelation($relationName)
{
if ('McafeeUltimoProcesoCreacion' == $relationName) {
$this->initMcafeeUltimoProcesoCreacions();
}
}
/**
* Clears out the collMcafeeUltimoProcesoCreacions 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 UsuariosMcafeeMovistarNuevos The current object (for fluent API support)
* @see addMcafeeUltimoProcesoCreacions()
*/
public function clearMcafeeUltimoProcesoCreacions()
{
$this->collMcafeeUltimoProcesoCreacions = null; // important to set this to null since that means it is uninitialized
$this->collMcafeeUltimoProcesoCreacionsPartial = null;
return $this;
}
/**
* reset is the collMcafeeUltimoProcesoCreacions collection loaded partially
*
* @return void
*/
public function resetPartialMcafeeUltimoProcesoCreacions($v = true)
{
$this->collMcafeeUltimoProcesoCreacionsPartial = $v;
}
/**
* Initializes the collMcafeeUltimoProcesoCreacions collection.
*
* By default this just sets the collMcafeeUltimoProcesoCreacions collection to an empty array (like clearcollMcafeeUltimoProcesoCreacions());
* 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 initMcafeeUltimoProcesoCreacions($overrideExisting = true)
{
if (null !== $this->collMcafeeUltimoProcesoCreacions && !$overrideExisting) {
return;
}
$this->collMcafeeUltimoProcesoCreacions = new PropelObjectCollection();
$this->collMcafeeUltimoProcesoCreacions->setModel('McafeeUltimoProcesoCreacion');
}
/**
* Gets an array of McafeeUltimoProcesoCreacion 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 UsuariosMcafeeMovistarNuevos 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|McafeeUltimoProcesoCreacion[] List of McafeeUltimoProcesoCreacion objects
* @throws PropelException
*/
public function getMcafeeUltimoProcesoCreacions($criteria = null, PropelPDO $con = null)
{
$partial = $this->collMcafeeUltimoProcesoCreacionsPartial && !$this->isNew();
if (null === $this->collMcafeeUltimoProcesoCreacions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collMcafeeUltimoProcesoCreacions) {
// return empty collection
$this->initMcafeeUltimoProcesoCreacions();
} else {
$collMcafeeUltimoProcesoCreacions = McafeeUltimoProcesoCreacionQuery::create(null, $criteria)
->filterByUsuariosMcafeeMovistarNuevos($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collMcafeeUltimoProcesoCreacionsPartial && count($collMcafeeUltimoProcesoCreacions)) {
$this->initMcafeeUltimoProcesoCreacions(false);
foreach ($collMcafeeUltimoProcesoCreacions as $obj) {
if (false == $this->collMcafeeUltimoProcesoCreacions->contains($obj)) {
$this->collMcafeeUltimoProcesoCreacions->append($obj);
}
}
$this->collMcafeeUltimoProcesoCreacionsPartial = true;
}
$collMcafeeUltimoProcesoCreacions->getInternalIterator()->rewind();
return $collMcafeeUltimoProcesoCreacions;
}
if ($partial && $this->collMcafeeUltimoProcesoCreacions) {
foreach ($this->collMcafeeUltimoProcesoCreacions as $obj) {
if ($obj->isNew()) {
$collMcafeeUltimoProcesoCreacions[] = $obj;
}
}
}
$this->collMcafeeUltimoProcesoCreacions = $collMcafeeUltimoProcesoCreacions;
$this->collMcafeeUltimoProcesoCreacionsPartial = false;
}
}
return $this->collMcafeeUltimoProcesoCreacions;
}
/**
* Sets a collection of McafeeUltimoProcesoCreacion 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 $mcafeeUltimoProcesoCreacions A Propel collection.
* @param PropelPDO $con Optional connection object
* @return UsuariosMcafeeMovistarNuevos The current object (for fluent API support)
*/
public function setMcafeeUltimoProcesoCreacions(PropelCollection $mcafeeUltimoProcesoCreacions, PropelPDO $con = null)
{
$mcafeeUltimoProcesoCreacionsToDelete = $this->getMcafeeUltimoProcesoCreacions(new Criteria(), $con)->diff($mcafeeUltimoProcesoCreacions);
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion = $mcafeeUltimoProcesoCreacionsToDelete;
foreach ($mcafeeUltimoProcesoCreacionsToDelete as $mcafeeUltimoProcesoCreacionRemoved) {
$mcafeeUltimoProcesoCreacionRemoved->setUsuariosMcafeeMovistarNuevos(null);
}
$this->collMcafeeUltimoProcesoCreacions = null;
foreach ($mcafeeUltimoProcesoCreacions as $mcafeeUltimoProcesoCreacion) {
$this->addMcafeeUltimoProcesoCreacion($mcafeeUltimoProcesoCreacion);
}
$this->collMcafeeUltimoProcesoCreacions = $mcafeeUltimoProcesoCreacions;
$this->collMcafeeUltimoProcesoCreacionsPartial = false;
return $this;
}
/**
* Returns the number of related McafeeUltimoProcesoCreacion objects.
*
* @param Criteria $criteria
* @param boolean $distinct
* @param PropelPDO $con
* @return int Count of related McafeeUltimoProcesoCreacion objects.
* @throws PropelException
*/
public function countMcafeeUltimoProcesoCreacions(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
{
$partial = $this->collMcafeeUltimoProcesoCreacionsPartial && !$this->isNew();
if (null === $this->collMcafeeUltimoProcesoCreacions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collMcafeeUltimoProcesoCreacions) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getMcafeeUltimoProcesoCreacions());
}
$query = McafeeUltimoProcesoCreacionQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterByUsuariosMcafeeMovistarNuevos($this)
->count($con);
}
return count($this->collMcafeeUltimoProcesoCreacions);
}
/**
* Method called to associate a McafeeUltimoProcesoCreacion object to this object
* through the McafeeUltimoProcesoCreacion foreign key attribute.
*
* @param McafeeUltimoProcesoCreacion $l McafeeUltimoProcesoCreacion
* @return UsuariosMcafeeMovistarNuevos The current object (for fluent API support)
*/
public function addMcafeeUltimoProcesoCreacion(McafeeUltimoProcesoCreacion $l)
{
if ($this->collMcafeeUltimoProcesoCreacions === null) {
$this->initMcafeeUltimoProcesoCreacions();
$this->collMcafeeUltimoProcesoCreacionsPartial = true;
}
if (!in_array($l, $this->collMcafeeUltimoProcesoCreacions->getArrayCopy(), true)) { // only add it if the **same** object is not already associated
$this->doAddMcafeeUltimoProcesoCreacion($l);
if ($this->mcafeeUltimoProcesoCreacionsScheduledForDeletion and $this->mcafeeUltimoProcesoCreacionsScheduledForDeletion->contains($l)) {
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion->remove($this->mcafeeUltimoProcesoCreacionsScheduledForDeletion->search($l));
}
}
return $this;
}
/**
* @param McafeeUltimoProcesoCreacion $mcafeeUltimoProcesoCreacion The mcafeeUltimoProcesoCreacion object to add.
*/
protected function doAddMcafeeUltimoProcesoCreacion($mcafeeUltimoProcesoCreacion)
{
$this->collMcafeeUltimoProcesoCreacions[]= $mcafeeUltimoProcesoCreacion;
$mcafeeUltimoProcesoCreacion->setUsuariosMcafeeMovistarNuevos($this);
}
/**
* @param McafeeUltimoProcesoCreacion $mcafeeUltimoProcesoCreacion The mcafeeUltimoProcesoCreacion object to remove.
* @return UsuariosMcafeeMovistarNuevos The current object (for fluent API support)
*/
public function removeMcafeeUltimoProcesoCreacion($mcafeeUltimoProcesoCreacion)
{
if ($this->getMcafeeUltimoProcesoCreacions()->contains($mcafeeUltimoProcesoCreacion)) {
$this->collMcafeeUltimoProcesoCreacions->remove($this->collMcafeeUltimoProcesoCreacions->search($mcafeeUltimoProcesoCreacion));
if (null === $this->mcafeeUltimoProcesoCreacionsScheduledForDeletion) {
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion = clone $this->collMcafeeUltimoProcesoCreacions;
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion->clear();
}
$this->mcafeeUltimoProcesoCreacionsScheduledForDeletion[]= $mcafeeUltimoProcesoCreacion;
$mcafeeUltimoProcesoCreacion->setUsuariosMcafeeMovistarNuevos(null);
}
return $this;
}
/**
* Clears the current object and sets all attributes to their default values
*/
......@@ -1558,10 +1867,19 @@ abstract class BaseUsuariosMcafeeMovistarNuevos extends BaseObject implements Pe
{
if ($deep && !$this->alreadyInClearAllReferencesDeep) {
$this->alreadyInClearAllReferencesDeep = true;
if ($this->collMcafeeUltimoProcesoCreacions) {
foreach ($this->collMcafeeUltimoProcesoCreacions as $o) {
$o->clearAllReferences($deep);
}
}
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
if ($this->collMcafeeUltimoProcesoCreacions instanceof PropelCollection) {
$this->collMcafeeUltimoProcesoCreacions->clearIterator();
}
$this->collMcafeeUltimoProcesoCreacions = null;
}
/**
......
......@@ -5,11 +5,14 @@ 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\McafeeUltimoProcesoCreacion;
use AppBundle\Model\UsuariosMcafeeMovistarNuevos;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosPeer;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery;
......@@ -51,6 +54,10 @@ use AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery;
* @method UsuariosMcafeeMovistarNuevosQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method UsuariosMcafeeMovistarNuevosQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method UsuariosMcafeeMovistarNuevosQuery leftJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a LEFT JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
* @method UsuariosMcafeeMovistarNuevosQuery rightJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a RIGHT JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
* @method UsuariosMcafeeMovistarNuevosQuery innerJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a INNER JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
*
* @method UsuariosMcafeeMovistarNuevos findOne(PropelPDO $con = null) Return the first UsuariosMcafeeMovistarNuevos matching the query
* @method UsuariosMcafeeMovistarNuevos findOneOrCreate(PropelPDO $con = null) Return the first UsuariosMcafeeMovistarNuevos matching the query, or a new UsuariosMcafeeMovistarNuevos object populated from the query conditions when no match is found
*
......@@ -882,6 +889,80 @@ abstract class BaseUsuariosMcafeeMovistarNuevosQuery extends ModelCriteria
return $this->addUsingAlias(UsuariosMcafeeMovistarNuevosPeer::PS_6759, $ps6759, $comparison);
}
/**
* Filter the query by a related McafeeUltimoProcesoCreacion object
*
* @param McafeeUltimoProcesoCreacion|PropelObjectCollection $mcafeeUltimoProcesoCreacion the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuariosMcafeeMovistarNuevosQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByMcafeeUltimoProcesoCreacion($mcafeeUltimoProcesoCreacion, $comparison = null)
{
if ($mcafeeUltimoProcesoCreacion instanceof McafeeUltimoProcesoCreacion) {
return $this
->addUsingAlias(UsuariosMcafeeMovistarNuevosPeer::ID, $mcafeeUltimoProcesoCreacion->getUltimoUmnId(), $comparison);
} elseif ($mcafeeUltimoProcesoCreacion instanceof PropelObjectCollection) {
return $this
->useMcafeeUltimoProcesoCreacionQuery()
->filterByPrimaryKeys($mcafeeUltimoProcesoCreacion->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByMcafeeUltimoProcesoCreacion() only accepts arguments of type McafeeUltimoProcesoCreacion or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return UsuariosMcafeeMovistarNuevosQuery The current query, for fluid interface
*/
public function joinMcafeeUltimoProcesoCreacion($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('McafeeUltimoProcesoCreacion');
// 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, 'McafeeUltimoProcesoCreacion');
}
return $this;
}
/**
* Use the McafeeUltimoProcesoCreacion relation McafeeUltimoProcesoCreacion 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\McafeeUltimoProcesoCreacionQuery A secondary query class using the current class as primary query
*/
public function useMcafeeUltimoProcesoCreacionQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinMcafeeUltimoProcesoCreacion($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'McafeeUltimoProcesoCreacion', '\AppBundle\Model\McafeeUltimoProcesoCreacionQuery');
}
/**
* Exclude object from result
*
......
<?xml version="1.0" encoding="utf-8"?>
<!--Autogenerated by PropelSchemaReverseTask class.-->
<database name="default" defaultIdMethod="native" namespace="AppBundle\Model">
<table name="backend_rol" phpName="BackendRol" idMethod="native">
<column name="bro_id" phpName="BroId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="bro_rol" phpName="BroRol" type="VARCHAR" size="30" required="true"/>
<column name="bro_nombre" phpName="BroNombre" type="VARCHAR" size="100" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="backend_usuario" phpName="BackendUsuario" idMethod="native">
<column name="bus_id" phpName="BusId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="bus_email" phpName="BusEmail" type="VARCHAR" size="60" required="false"/>
<column name="bus_clave" phpName="BusClave" type="VARCHAR" size="200" required="false"/>
<column name="bus_nombres" phpName="BusNombres" type="VARCHAR" size="100" required="false"/>
<column name="bus_estado" phpName="BusEstado" type="SMALLINT" required="false"/>
<column name="bus_eliminado" phpName="BusEliminado" type="BOOLEAN" size="1" required="false" defaultValue="false"/>
<table name="backend_rol" phpName="BackendRol" idMethod="native">
<column name="bro_id" phpName="BroId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="bro_rol" phpName="BroRol" type="VARCHAR" size="30" required="true"/>
<column name="bro_nombre" phpName="BroNombre" type="VARCHAR" size="100" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="backend_usuario" phpName="BackendUsuario" idMethod="native">
<column name="bus_id" phpName="BusId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="bus_email" phpName="BusEmail" type="VARCHAR" size="60" required="false"/>
<column name="bus_clave" phpName="BusClave" type="VARCHAR" size="200" required="false"/>
<column name="bus_nombres" phpName="BusNombres" type="VARCHAR" size="100" required="false"/>
<column name="bus_estado" phpName="BusEstado" type="SMALLINT" required="false"/>
<column name="bus_eliminado" phpName="BusEliminado" type="BOOLEAN" size="1" required="false" defaultValue="false"/>
<behavior name="timestampable" />
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="backendusuario_backendrol" phpName="BackendusuarioBackendrol" idMethod="native">
<column name="bro_id" phpName="BroId" type="INTEGER" primaryKey="true" required="true"/>
<column name="bus_id" phpName="BusId" type="INTEGER" primaryKey="true" required="true"/>
<behavior name="timestampable" />
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="backendusuario_backendrol" phpName="BackendusuarioBackendrol" idMethod="native">
<column name="bro_id" phpName="BroId" type="INTEGER" primaryKey="true" required="true"/>
<column name="bus_id" phpName="BusId" type="INTEGER" primaryKey="true" required="true"/>
<behavior name="timestampable" />
<foreign-key foreignTable="backend_usuario" name="fk_backendusuario_backendrol2" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="bus_id" foreign="bus_id"/>
</foreign-key>
<foreign-key foreignTable="backend_rol" name="fk_backendusuario_backendrol" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="bro_id" foreign="bro_id"/>
</foreign-key>
<index name="fk_backendusuario_backendrol2">
<index-column name="bus_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="emailing" phpName="Emailing" idMethod="native">
<column name="ema_id" phpName="EmaId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ema_total" phpName="EmaTotal" type="INTEGER" required="false"/>
<column name="ema_procesado_ok" phpName="EmaProcesadoOk" type="INTEGER" required="false"/>
<column name="ema_procesado_no_ok" phpName="EmaProcesadoNoOk" type="INTEGER" required="false"/>
<column name="ema_enviado_ok" phpName="EmaEnviadoOk" type="INTEGER" required="false"/>
<column name="ema_enviado_no_ok" phpName="EmaEnviadoNoOk" type="INTEGER" required="false"/>
<column name="ema_ya_descargo" phpName="EmaYaDescargo" type="INTEGER" required="false"/>
<column name="ema_sin_email" phpName="EmaSinEmail" type="INTEGER" required="false"/>
<column name="ema_descencriptado_ok" phpName="EmaDescencriptadoOk" type="INTEGER" required="false"/>
<column name="ema_descencriptado_no_ok" phpName="EmaDescencriptadoNoOk" type="INTEGER" required="false"/>
<column name="ema_permitido" phpName="EmaPermitido" type="INTEGER" required="false"/>
<column name="ema_no_permitido" phpName="EmaNoPermitido" type="INTEGER" required="false"/>
<column name="ema_delivery" phpName="EmaDelivery" type="INTEGER" required="false"/>
<column name="ema_bounce" phpName="EmaBounce" type="INTEGER" required="false"/>
<column name="ema_complaint" phpName="EmaComplaint" type="INTEGER" required="false"/>
<column name="ema_eliminado" phpName="EmaEliminado" type="BOOLEAN" size="1" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="backend_usuario" name="fk_backendusuario_backendrol2" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="bus_id" foreign="bus_id"/>
</foreign-key>
<foreign-key foreignTable="backend_rol" name="fk_backendusuario_backendrol" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="bro_id" foreign="bro_id"/>
</foreign-key>
<index name="fk_backendusuario_backendrol2">
<index-column name="bus_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="emailing" phpName="Emailing" idMethod="native">
<column name="ema_id" phpName="EmaId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ema_total" phpName="EmaTotal" type="INTEGER" required="false"/>
<column name="ema_procesado_ok" phpName="EmaProcesadoOk" type="INTEGER" required="false"/>
<column name="ema_procesado_no_ok" phpName="EmaProcesadoNoOk" type="INTEGER" required="false"/>
<column name="ema_enviado_ok" phpName="EmaEnviadoOk" type="INTEGER" required="false"/>
<column name="ema_enviado_no_ok" phpName="EmaEnviadoNoOk" type="INTEGER" required="false"/>
<column name="ema_ya_descargo" phpName="EmaYaDescargo" type="INTEGER" required="false"/>
<column name="ema_sin_email" phpName="EmaSinEmail" type="INTEGER" required="false"/>
<column name="ema_descencriptado_ok" phpName="EmaDescencriptadoOk" type="INTEGER" required="false"/>
<column name="ema_descencriptado_no_ok" phpName="EmaDescencriptadoNoOk" type="INTEGER" required="false"/>
<column name="ema_permitido" phpName="EmaPermitido" type="INTEGER" required="false"/>
<column name="ema_no_permitido" phpName="EmaNoPermitido" type="INTEGER" required="false"/>
<column name="ema_delivery" phpName="EmaDelivery" type="INTEGER" required="false"/>
<column name="ema_bounce" phpName="EmaBounce" type="INTEGER" required="false"/>
<column name="ema_complaint" phpName="EmaComplaint" type="INTEGER" required="false"/>
<column name="ema_eliminado" phpName="EmaEliminado" type="BOOLEAN" size="1" required="false"/>
<behavior name="timestampable" />
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="envio_email" phpName="EnvioEmail" idMethod="native">
<column name="eem_id" phpName="EemId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="ema_id" phpName="EmaId" type="INTEGER" required="false"/>
<column name="eem_tipo" phpName="EemTipo" type="SMALLINT" required="false"/>
<column name="eem_email" phpName="EemEmail" type="VARCHAR" size="60" required="false"/>
<column name="eem_campana" phpName="EemCampana" type="VARCHAR" size="20" required="false"/>
<column name="eem_fecha_envio" phpName="EemFechaEnvio" type="TIMESTAMP" required="false"/>
<column name="eem_fecha_notificacion" phpName="EemFechaNotificacion" type="TIMESTAMP" required="false"/>
<column name="eem_trans_id_cliente" phpName="EemTransIdCliente" type="VARCHAR" size="200" required="false"/>
<column name="eem_from_email" phpName="EemFromEmail" type="VARCHAR" size="60" required="false"/>
<column name="eem_from_nombre_email" phpName="EemFromNombreEmail" type="VARCHAR" size="50" required="false"/>
<column name="eem_from_asunto" phpName="EemFromAsunto" type="VARCHAR" size="50" required="false"/>
<column name="eem_estado" phpName="EemEstado" type="SMALLINT" required="false"/>
<column name="eem_eliminado" phpName="EemEliminado" type="BOOLEAN" size="1" required="false"/>
<behavior name="timestampable" />
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="envio_email" phpName="EnvioEmail" idMethod="native">
<column name="eem_id" phpName="EemId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="ema_id" phpName="EmaId" type="INTEGER" required="false"/>
<column name="eem_tipo" phpName="EemTipo" type="SMALLINT" required="false"/>
<column name="eem_email" phpName="EemEmail" type="VARCHAR" size="60" required="false"/>
<column name="eem_campana" phpName="EemCampana" type="VARCHAR" size="20" required="false"/>
<column name="eem_fecha_envio" phpName="EemFechaEnvio" type="TIMESTAMP" required="false"/>
<column name="eem_fecha_notificacion" phpName="EemFechaNotificacion" type="TIMESTAMP" required="false"/>
<column name="eem_trans_id_cliente" phpName="EemTransIdCliente" type="VARCHAR" size="200" required="false"/>
<column name="eem_from_email" phpName="EemFromEmail" type="VARCHAR" size="60" required="false"/>
<column name="eem_from_nombre_email" phpName="EemFromNombreEmail" type="VARCHAR" size="50" required="false"/>
<column name="eem_from_asunto" phpName="EemFromAsunto" type="VARCHAR" size="50" required="false"/>
<column name="eem_estado" phpName="EemEstado" type="SMALLINT" required="false"/>
<column name="eem_eliminado" phpName="EemEliminado" type="BOOLEAN" size="1" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="emailing" name="fk_emailing_envioemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ema_id" foreign="ema_id"/>
</foreign-key>
<foreign-key foreignTable="usuario_mcafee" name="fk_usuariomcafee_envioemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_usuariomcafee_envioemail">
<index-column name="umc_id"/>
</index>
<index name="fk_emailing_envioemail">
<index-column name="ema_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<behavior name="timestampable" />
<foreign-key foreignTable="emailing" name="fk_emailing_envioemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ema_id" foreign="ema_id"/>
</foreign-key>
<foreign-key foreignTable="usuario_mcafee" name="fk_usuariomcafee_envioemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_usuariomcafee_envioemail">
<index-column name="umc_id"/>
</index>
<index name="fk_emailing_envioemail">
<index-column name="ema_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_transaccion" phpName="McafeeTransaccion" idMethod="native">
<column name="mtr_id" phpName="MtrId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="mtr_tipo" phpName="MtrTipo" type="SMALLINT" required="false"/>
<column name="mtr_referencia" phpName="MtrReferencia" type="VARCHAR" size="50" required="false"/>
<column name="mtr_referencia_mcafee" phpName="MtrReferenciaMcafee" type="VARCHAR" size="50" required="false"/>
<column name="mtr_xml_envio" phpName="MtrXmlEnvio" type="LONGVARCHAR" required="false"/>
<column name="mtr_codigo_retorno" phpName="MtrCodigoRetorno" type="VARCHAR" size="20" required="false"/>
<column name="mtr_xml_respuesta" phpName="MtrXmlRespuesta" type="LONGVARCHAR" required="false"/>
<column name="mtr_estado" phpName="MtrEstado" type="SMALLINT" required="false"/>
<column name="mtr_productdownloadurl" phpName="MtrProductdownloadurl" type="VARCHAR" size="250" required="false"/>
<column name="mtr_short_productdownloadurl" phpName="MtrShortProductdownloadurl" type="VARCHAR" size="40" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuario_mcafee" name="fk_usuario_mcafeetransaccion" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_suscripcion_mcafeetransaccion">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_transaccion_pendiente" phpName="McafeeTransaccionPendiente" idMethod="native">
<column name="mtp_id" phpName="MtpId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="mtp_tipo" phpName="MtpTipo" type="SMALLINT" required="false"/>
<column name="mtp_estado" phpName="MtpEstado" type="SMALLINT" required="false"/>
<column name="mtp_intento" phpName="MtpIntento" type="SMALLINT" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuario_mcafee" name="fk_suscripcion_mcafeetransaccionpendiente" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_suscripcion_mcafeetransaccionpendiente">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_migracion" phpName="McafeeUltimoProcesoMigracion" idMethod="native">
<column name="mup_id" phpName="MupId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umc_id" phpName="UltimoUmcId" type="INTEGER" required="true"/>
<column name="mup_cantidad_procesados" phpName="MupCantidadProcesados" type="INTEGER" required="false"/>
<column name="mup_cantidad_pendientes" phpName="MupCantidadPendientes" type="INTEGER" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuarios_mcafee_movistar_migrar" name="idx_fk_mcafee_ultimo_usuario" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umc_id" foreign="id"/>
</foreign-key>
<index name="idx_fk_mcafee_ultimo_usuario_idx">
<index-column name="ultimo_umc_id"/>
</index>
<vendor type="mysql">
<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="mtr_id" phpName="MtrId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="mtr_tipo" phpName="MtrTipo" type="SMALLINT" required="false"/>
<column name="mtr_referencia" phpName="MtrReferencia" type="VARCHAR" size="50" required="false"/>
<column name="mtr_referencia_mcafee" phpName="MtrReferenciaMcafee" type="VARCHAR" size="50" required="false"/>
<column name="mtr_xml_envio" phpName="MtrXmlEnvio" type="LONGVARCHAR" required="false"/>
<column name="mtr_codigo_retorno" phpName="MtrCodigoRetorno" type="VARCHAR" size="20" required="false"/>
<column name="mtr_xml_respuesta" phpName="MtrXmlRespuesta" type="LONGVARCHAR" required="false"/>
<column name="mtr_estado" phpName="MtrEstado" type="SMALLINT" required="false"/>
<column name="mtr_productdownloadurl" phpName="MtrProductdownloadurl" type="VARCHAR" size="250" required="false"/>
<column name="mtr_short_productdownloadurl" phpName="MtrShortProductdownloadurl" type="VARCHAR" size="40" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuario_mcafee" name="fk_usuario_mcafeetransaccion" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_suscripcion_mcafeetransaccion">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_transaccion_pendiente" phpName="McafeeTransaccionPendiente" idMethod="native">
<column name="mtp_id" phpName="MtpId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="mtp_tipo" phpName="MtpTipo" type="SMALLINT" required="false"/>
<column name="mtp_estado" phpName="MtpEstado" type="SMALLINT" required="false"/>
<column name="mtp_intento" phpName="MtpIntento" type="SMALLINT" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuario_mcafee" name="fk_suscripcion_mcafeetransaccionpendiente" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_suscripcion_mcafeetransaccionpendiente">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="mcafee_ultimo_proceso_creacion" phpName="McafeeUltimoProcesoCreacion" idMethod="native">
<column name="muc_id" phpName="MucId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umn_id" phpName="UltimoUmnId" type="INTEGER" required="false"/>
<column name="muc_cantidad_procesados" phpName="MucCantidadProcesados" type="INTEGER" required="false"/>
<column name="muc_cantidad_pendientes" phpName="MucCantidadPendientes" 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 foreignTable="usuarios_mcafee_movistar_nuevos" name="fk_idx_usuario_movistar_nuevo" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umn_id" foreign="id"/>
</foreign-key>
<index name="fk_ultimo_umc_id_normla_idx">
<index-column name="ultimo_umc_id"/>
<index name="fk_idx_usuario_movistar_nuevo_idx">
<index-column name="ultimo_umn_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"/>
<column name="nem_tipo" phpName="NemTipo" type="SMALLINT" required="false"/>
<column name="nem_mail_source" phpName="NemMailSource" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_destination" phpName="NemMailDestination" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_message_id" phpName="NemMailMessageId" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_timestamp" phpName="NemMailTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_bounce_type" phpName="NemBounceType" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_sub_type" phpName="NemBounceSubType" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_email_address" phpName="NemBounceRecipientEmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="nem_bounce_recipient_action" phpName="NemBounceRecipientAction" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_status" phpName="NemBounceRecipientStatus" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_diagnostic_code" phpName="NemBounceRecipientDiagnosticCode" type="VARCHAR" size="1000" required="false"/>
<column name="nem_bounce_timestamp" phpName="NemBounceTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_complaint_user_agent" phpName="NemComplaintUserAgent" type="VARCHAR" size="1000" required="false"/>
<column name="nem_complaint_recipient_email_address" phpName="NemComplaintRecipientEmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="nem_complaint_feedback_type" phpName="NemComplaintFeedbackType" type="VARCHAR" size="60" required="false"/>
<column name="nem_complaint_arrival_date" phpName="NemComplaintArrivalDate" type="TIMESTAMP" required="false"/>
<column name="nem_complaint_timestamp" phpName="NemComplaintTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_eliminado" phpName="NemEliminado" type="BOOLEAN" size="1" required="false"/>
<column name="nem_notificacion" phpName="NemNotificacion" type="LONGVARCHAR" required="false"/>
<table name="mcafee_ultimo_proceso_migracion" phpName="McafeeUltimoProcesoMigracion" idMethod="native">
<column name="mup_id" phpName="MupId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ultimo_umc_id" phpName="UltimoUmcId" type="INTEGER" required="true"/>
<column name="mup_cantidad_procesados" phpName="MupCantidadProcesados" type="INTEGER" required="false"/>
<column name="mup_cantidad_pendientes" phpName="MupCantidadPendientes" type="INTEGER" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="usuarios_mcafee_movistar_migrar" name="idx_fk_mcafee_ultimo_usuario" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="ultimo_umc_id" foreign="id"/>
</foreign-key>
<index name="idx_fk_mcafee_ultimo_usuario_idx">
<index-column name="ultimo_umc_id"/>
</index>
<vendor type="mysql">
<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"/>
<column name="nem_tipo" phpName="NemTipo" type="SMALLINT" required="false"/>
<column name="nem_mail_source" phpName="NemMailSource" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_destination" phpName="NemMailDestination" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_message_id" phpName="NemMailMessageId" type="VARCHAR" size="60" required="false"/>
<column name="nem_mail_timestamp" phpName="NemMailTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_bounce_type" phpName="NemBounceType" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_sub_type" phpName="NemBounceSubType" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_email_address" phpName="NemBounceRecipientEmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="nem_bounce_recipient_action" phpName="NemBounceRecipientAction" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_status" phpName="NemBounceRecipientStatus" type="VARCHAR" size="20" required="false"/>
<column name="nem_bounce_recipient_diagnostic_code" phpName="NemBounceRecipientDiagnosticCode" type="VARCHAR" size="1000" required="false"/>
<column name="nem_bounce_timestamp" phpName="NemBounceTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_complaint_user_agent" phpName="NemComplaintUserAgent" type="VARCHAR" size="1000" required="false"/>
<column name="nem_complaint_recipient_email_address" phpName="NemComplaintRecipientEmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="nem_complaint_feedback_type" phpName="NemComplaintFeedbackType" type="VARCHAR" size="60" required="false"/>
<column name="nem_complaint_arrival_date" phpName="NemComplaintArrivalDate" type="TIMESTAMP" required="false"/>
<column name="nem_complaint_timestamp" phpName="NemComplaintTimestamp" type="TIMESTAMP" required="false"/>
<column name="nem_eliminado" phpName="NemEliminado" type="BOOLEAN" size="1" required="false"/>
<column name="nem_notificacion" phpName="NemNotificacion" type="LONGVARCHAR" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="envio_email" name="fk_envioemail_notificationemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="eem_id" foreign="eem_id"/>
</foreign-key>
<index name="fk_envioemail_notificationemail">
<index-column name="eem_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="parametro_configuracion" phpName="ParametroConfiguracion" idMethod="native">
<column name="pco_id" phpName="PcoId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="pco_nombre" phpName="PcoNombre" type="VARCHAR" size="100" required="false"/>
<column name="pco_valor" phpName="PcoValor" type="VARCHAR" size="1000" required="false"/>
<column name="pco_descripcion" phpName="PcoDescripcion" type="VARCHAR" size="1000" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="tracking" phpName="Tracking" idMethod="native">
<column name="tra_id" phpName="TraId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="eem_id" phpName="EemId" type="INTEGER" required="false"/>
<column name="tra_tipo" phpName="TraTipo" type="SMALLINT" required="false"/>
<column name="tra_ip" phpName="TraIp" type="VARCHAR" size="20" required="false"/>
<column name="tra_url" phpName="TraUrl" type="VARCHAR" size="1000" required="false"/>
<column name="tra_referer" phpName="TraReferer" type="VARCHAR" size="1000" required="false"/>
<column name="tra_host" phpName="TraHost" type="VARCHAR" size="1000" required="false"/>
<column name="tra_procedencia" phpName="TraProcedencia" type="VARCHAR" size="50" required="false"/>
<column name="tra_user_agent" phpName="TraUserAgent" type="VARCHAR" size="1000" required="false"/>
<column name="tra_campana" phpName="TraCampana" type="VARCHAR" size="20" required="false"/>
<column name="tra_eliminado" phpName="TraEliminado" type="BOOLEAN" size="1" required="false"/>
<column name="tra_tipo_dispositivo" phpName="TraTipoDispositivo" type="SMALLINT" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="envio_email" name="fk_envioemail_notificationemail" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="eem_id" foreign="eem_id"/>
</foreign-key>
<index name="fk_envioemail_notificationemail">
<index-column name="eem_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="parametro_configuracion" phpName="ParametroConfiguracion" idMethod="native">
<column name="pco_id" phpName="PcoId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="pco_nombre" phpName="PcoNombre" type="VARCHAR" size="100" required="false"/>
<column name="pco_valor" phpName="PcoValor" type="VARCHAR" size="1000" required="false"/>
<column name="pco_descripcion" phpName="PcoDescripcion" type="VARCHAR" size="1000" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="tracking" phpName="Tracking" idMethod="native">
<column name="tra_id" phpName="TraId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_id" phpName="UmcId" type="INTEGER" required="false"/>
<column name="eem_id" phpName="EemId" type="INTEGER" required="false"/>
<column name="tra_tipo" phpName="TraTipo" type="SMALLINT" required="false"/>
<column name="tra_ip" phpName="TraIp" type="VARCHAR" size="20" required="false"/>
<column name="tra_url" phpName="TraUrl" type="VARCHAR" size="1000" required="false"/>
<column name="tra_referer" phpName="TraReferer" type="VARCHAR" size="1000" required="false"/>
<column name="tra_host" phpName="TraHost" type="VARCHAR" size="1000" required="false"/>
<column name="tra_procedencia" phpName="TraProcedencia" type="VARCHAR" size="50" required="false"/>
<column name="tra_user_agent" phpName="TraUserAgent" type="VARCHAR" size="1000" required="false"/>
<column name="tra_campana" phpName="TraCampana" type="VARCHAR" size="20" required="false"/>
<column name="tra_eliminado" phpName="TraEliminado" type="BOOLEAN" size="1" required="false"/>
<column name="tra_tipo_dispositivo" phpName="TraTipoDispositivo" type="SMALLINT" required="false"/>
<behavior name="timestampable" />
<foreign-key foreignTable="envio_email" name="fk_envioemail_tracking" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="eem_id" foreign="eem_id"/>
</foreign-key>
<foreign-key foreignTable="usuario_mcafee" name="fk_usuariomcafee_traking" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_envioemail_tracking">
<index-column name="eem_id"/>
</index>
<index name="fk_usuariomcafee_traking">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuario_mcafee" phpName="UsuarioMcafee" idMethod="native">
<column name="umc_id" phpName="UmcId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_mcafee_tipo_producto" phpName="UmcMcafeeTipoProducto" type="SMALLINT" required="false"/>
<column name="umc_mcafee_affid" phpName="UmcMcafeeAffid" type="VARCHAR" size="10" required="false"/>
<column name="umc_mcafee_ccid" phpName="UmcMcafeeCcid" type="VARCHAR" size="20" required="false"/>
<column name="umc_mcafee_email" phpName="UmcMcafeeEmail" type="VARCHAR" size="100" required="false"/>
<column name="umc_mcafee_sku" phpName="UmcMcafeeSku" type="VARCHAR" size="20" required="false"/>
<column name="umc_mcafee_keycard" phpName="UmcMcafeeKeycard" type="VARCHAR" size="1000" required="false"/>
<column name="umc_mcafee_status" phpName="UmcMcafeeStatus" type="SMALLINT" required="false"/>
<column name="umc_movistar_activo" phpName="UmcMovistarActivo" type="BOOLEAN" size="1" required="false"/>
<column name="umc_movistar_any" phpName="UmcMovistarAny" type="VARCHAR" size="20" required="false"/>
<column name="umc_movistar_email" phpName="UmcMovistarEmail" type="VARCHAR" size="100" required="false"/>
<column name="umc_movistar_rut" phpName="UmcMovistarRut" type="VARCHAR" size="20" required="false"/>
<column name="umc_parametro_encriptado" phpName="UmcParametroEncriptado" type="VARCHAR" size="300" required="false"/>
<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"/>
<behavior name="timestampable" />
<foreign-key foreignTable="envio_email" name="fk_envioemail_tracking" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="eem_id" foreign="eem_id"/>
</foreign-key>
<foreign-key foreignTable="usuario_mcafee" name="fk_usuariomcafee_traking" onDelete="RESTRICT" onUpdate="RESTRICT">
<reference local="umc_id" foreign="umc_id"/>
</foreign-key>
<index name="fk_envioemail_tracking">
<index-column name="eem_id"/>
</index>
<index name="fk_usuariomcafee_traking">
<index-column name="umc_id"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuario_mcafee" phpName="UsuarioMcafee" idMethod="native">
<column name="umc_id" phpName="UmcId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="umc_mcafee_tipo_producto" phpName="UmcMcafeeTipoProducto" type="SMALLINT" required="false"/>
<column name="umc_mcafee_affid" phpName="UmcMcafeeAffid" type="VARCHAR" size="10" required="false"/>
<column name="umc_mcafee_ccid" phpName="UmcMcafeeCcid" type="VARCHAR" size="20" required="false"/>
<column name="umc_mcafee_email" phpName="UmcMcafeeEmail" type="VARCHAR" size="100" required="false"/>
<column name="umc_mcafee_sku" phpName="UmcMcafeeSku" type="VARCHAR" size="20" required="false"/>
<column name="umc_mcafee_keycard" phpName="UmcMcafeeKeycard" type="VARCHAR" size="1000" required="false"/>
<column name="umc_mcafee_status" phpName="UmcMcafeeStatus" type="SMALLINT" required="false"/>
<column name="umc_movistar_activo" phpName="UmcMovistarActivo" type="BOOLEAN" size="1" required="false"/>
<column name="umc_movistar_any" phpName="UmcMovistarAny" type="VARCHAR" size="20" required="false"/>
<column name="umc_movistar_email" phpName="UmcMovistarEmail" type="VARCHAR" size="100" required="false"/>
<column name="umc_movistar_rut" phpName="UmcMovistarRut" type="VARCHAR" size="20" required="false"/>
<column name="umc_parametro_encriptado" phpName="UmcParametroEncriptado" type="VARCHAR" size="300" required="false"/>
<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"/>
<behavior name="timestampable" />
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuarios_mcafee_movistar_migrar" phpName="UsuariosMcafeeMovistarMigrar" idMethod="native">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="id_mov" phpName="IdMov" type="INTEGER" required="false" defaultValue="0"/>
<column name="area_tel" phpName="AreaTel" type="INTEGER" required="false"/>
<column name="rut" phpName="Rut" type="INTEGER" required="false"/>
<column name="nombres" phpName="Nombres" type="VARCHAR" size="45" required="false"/>
<column name="correo" phpName="Correo" type="VARCHAR" size="64" required="false"/>
<column name="fono_contacto_fijo_1" phpName="FonoContactoFijo1" type="INTEGER" required="false"/>
<column name="fono_contacto_fijo_2" phpName="FonoContactoFijo2" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_1" phpName="FonoContactoMovil1" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_2" phpName="FonoContactoMovil2" type="INTEGER" required="false"/>
<column name="ps_6094" phpName="Ps6094" type="INTEGER" required="false"/>
<column name="ps_5679" phpName="Ps5679" type="INTEGER" required="false"/>
<column name="ps_2989" phpName="Ps2989" type="INTEGER" required="false"/>
<column name="ps_6753" phpName="Ps6753" type="INTEGER" required="false"/>
<column name="ps_6759" phpName="Ps6759" type="INTEGER" required="false"/>
<column name="id_mc" phpName="IdMc" type="INTEGER" required="true" defaultValue="0"/>
<column name="Ccid" phpName="Ccid" type="VARCHAR" size="25" required="false"/>
<column name="Email_Address" phpName="EmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="New_Registration_Date" phpName="NewRegistrationDate" type="DATE" required="false"/>
<column name="Last_Login_Date" phpName="LastLoginDate" type="DATE" required="false"/>
<column name="Installation_Date" phpName="InstallationDate" type="DATE" required="false"/>
<column name="Last_Update_Date" phpName="LastUpdateDate" type="DATE" required="false"/>
<column name="License_Activity" phpName="LicenseActivity" type="VARCHAR" size="20" required="false"/>
<column name="License_Activity_Qty" phpName="LicenseActivityQty" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_PC" phpName="TotalActivatedDevicesPc" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_MAC" phpName="TotalActivatedDevicesMac" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_Mobile" phpName="TotalActivatedDevicesMobile" type="INTEGER" required="false"/>
<column name="Active_Devices_PC" phpName="ActiveDevicesPc" type="INTEGER" required="false"/>
<column name="Active_Devices_MAC" phpName="ActiveDevicesMac" type="INTEGER" required="false"/>
<column name="Active_Devices_Mobile" phpName="ActiveDevicesMobile" type="INTEGER" required="false"/>
<column name="Device_Type" phpName="DeviceType" type="VARCHAR" size="20" required="false"/>
<column name="Numero_Mcafee" phpName="NumeroMcafee" type="INTEGER" size="20" required="false"/>
<column name="sku" phpName="Sku" type="VARCHAR" size="20" required="false"/>
<index name="ccid">
<index-column name="Ccid"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<behavior name="timestampable" />
<index name="indice_umc_movistar_any">
<index-column name="umc_movistar_any"/>
</index>
<index name="indice_fecha_creacion">
<index-column name="created_at"/>
</index>
<index name="indice_mcafee_mail">
<index-column name="umc_mcafee_email"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuarios_mcafee_movistar_migrar" phpName="UsuariosMcafeeMovistarMigrar" idMethod="native">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="id_mov" phpName="IdMov" type="INTEGER" required="false" defaultValue="0"/>
<column name="area_tel" phpName="AreaTel" type="INTEGER" required="false"/>
<column name="rut" phpName="Rut" type="INTEGER" required="false"/>
<column name="nombres" phpName="Nombres" type="VARCHAR" size="45" required="false"/>
<column name="correo" phpName="Correo" type="VARCHAR" size="64" required="false"/>
<column name="fono_contacto_fijo_1" phpName="FonoContactoFijo1" type="INTEGER" required="false"/>
<column name="fono_contacto_fijo_2" phpName="FonoContactoFijo2" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_1" phpName="FonoContactoMovil1" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_2" phpName="FonoContactoMovil2" type="INTEGER" required="false"/>
<column name="ps_6094" phpName="Ps6094" type="INTEGER" required="false"/>
<column name="ps_5679" phpName="Ps5679" type="INTEGER" required="false"/>
<column name="ps_2989" phpName="Ps2989" type="INTEGER" required="false"/>
<column name="ps_6753" phpName="Ps6753" type="INTEGER" required="false"/>
<column name="ps_6759" phpName="Ps6759" type="INTEGER" required="false"/>
<column name="id_mc" phpName="IdMc" type="INTEGER" required="true" defaultValue="0"/>
<column name="Ccid" phpName="Ccid" type="VARCHAR" size="25" required="false"/>
<column name="Email_Address" phpName="EmailAddress" type="VARCHAR" size="60" required="false"/>
<column name="New_Registration_Date" phpName="NewRegistrationDate" type="DATE" required="false"/>
<column name="Last_Login_Date" phpName="LastLoginDate" type="DATE" required="false"/>
<column name="Installation_Date" phpName="InstallationDate" type="DATE" required="false"/>
<column name="Last_Update_Date" phpName="LastUpdateDate" type="DATE" required="false"/>
<column name="License_Activity" phpName="LicenseActivity" type="VARCHAR" size="20" required="false"/>
<column name="License_Activity_Qty" phpName="LicenseActivityQty" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_PC" phpName="TotalActivatedDevicesPc" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_MAC" phpName="TotalActivatedDevicesMac" type="INTEGER" required="false"/>
<column name="Total_Activated_Devices_Mobile" phpName="TotalActivatedDevicesMobile" type="INTEGER" required="false"/>
<column name="Active_Devices_PC" phpName="ActiveDevicesPc" type="INTEGER" required="false"/>
<column name="Active_Devices_MAC" phpName="ActiveDevicesMac" type="INTEGER" required="false"/>
<column name="Active_Devices_Mobile" phpName="ActiveDevicesMobile" type="INTEGER" required="false"/>
<column name="Device_Type" phpName="DeviceType" type="VARCHAR" size="20" required="false"/>
<column name="Numero_Mcafee" phpName="NumeroMcafee" type="INTEGER" size="20" required="false"/>
<column name="sku" phpName="Sku" type="VARCHAR" size="20" required="false"/>
<index name="ccid">
<index-column name="Ccid"/>
</index>
<index name="correo">
<index-column name="Email_Address"/>
</index>
<index name="activty">
<index-column name="License_Activity"/>
</index>
<index name="tipo">
<index-column name="Device_Type"/>
</index>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="usuarios_mcafee_movistar_nuevos" phpName="UsuariosMcafeeMovistarNuevos" idMethod="native">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="id_mov" phpName="IdMov" type="INTEGER" required="true" defaultValue="0"/>
<column name="area_tel" phpName="AreaTel" type="INTEGER" required="false"/>
<column name="rut" phpName="Rut" type="INTEGER" required="false"/>
<column name="nombres" phpName="Nombres" type="VARCHAR" size="45" required="false"/>
<column name="correo" phpName="Correo" type="VARCHAR" size="64" required="false"/>
<column name="fono_contacto_fijo_1" phpName="FonoContactoFijo1" type="INTEGER" required="false"/>
<column name="fono_contacto_fijo_2" phpName="FonoContactoFijo2" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_1" phpName="FonoContactoMovil1" type="INTEGER" required="false"/>
<column name="fono_contacto_movil_2" phpName="FonoContactoMovil2" type="INTEGER" required="false"/>
<column name="ps_6094" phpName="Ps6094" type="INTEGER" required="false"/>
<column name="ps_5679" phpName="Ps5679" type="INTEGER" required="false"/>
<column name="ps_2989" phpName="Ps2989" type="INTEGER" required="false"/>
<column name="ps_6753" phpName="Ps6753" type="INTEGER" required="false"/>
<column name="ps_6759" phpName="Ps6759" type="INTEGER" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
</database>
<?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\UsuariosMcafeeMovistarNuevos;
use AppBundle\Model\UsuariosMcafeeMovistarNuevosQuery;
use AppBundle\Model\UsuarioMcafee;
use AppBundle\Model\UsuarioMcafeeQuery;
use AppBundle\Model\McafeeTransaccion;
use AppBundle\Model\McafeeTransaccionQuery;
use AppBundle\Model\McafeeTransaccionPendiente;
use AppBundle\Model\McafeeTransaccionPendienteQuery;
use AppBundle\Model\McafeeUltimoProcesoCreacion;
use AppBundle\Model\McafeeUltimoProcesoCreacionQuery;
use AppBundle\Lib\Utiles;
class McafeeGenerarUsuariosNuevosMcafeeCommand extends ContainerAwareCommand
{
const LENGUAJE = "es";
const TIMEOUT = 20;
const SKU_DESTINY = "419-92860-1usermds";
protected function configure()
{
$this
->setName('mcafee:generar-usuarios-nuevos-mcafee')
->setDescription('comando que permite generar nuevos usuarios en mcafee, desde una tabla con datos.')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln("COMANDO INICIADO.");
$log = Utiles::setLog('command::migrarUsuariosSuscripcion', 'ws/wsMigrarUsuariosMcAfee');
$esTxPendiente = false;
$failedAlready = false;
$ultimoUsuarioProcesado = null;
$cantidadProcesados = 0;
$cantidadPendientes = 0;
$usuariosMax = Utiles::getParametroConfiguracion("numero_usuarios_creacion");
$limiteAuxUsuarios =Utiles::getParametroConfiguracion("limite_inicio_creacion");
$log->debug("obteniendo ultimo indice procesado...");
$ultimoIndiceUsuarioProcesado = McafeeUltimoProcesoCreacionQuery::create()//arreglar es ultimo indice procesado
->orderByMucId("DESC")
->findOne();
if ($ultimoIndiceUsuarioProcesado == null)
$condicion = "usuarios_mcafee_movistar_nuevos.id > 0";
//else $condicion = "usuarios_mcafee_movistar_migrar.id > ".$ultimoIndiceUsuarioProcesado->getUltimoUmcId();
else $condicion = "usuarios_mcafee_movistar_nuevos.id >= $limiteAuxUsuarios and usuarios_mcafee_movistar_migrar.id > ".$ultimoIndiceUsuarioProcesado->getUltimoUmcId()." and usuarios_mcafee_movistar_migrar.Device_Type != 'MultiDevice'";
$log->debug("condicion a analizar ".$condicion);
$log->debug("obteniendo usuarios candidatos a crear...");
$usuariosACrear = UsuariosMcafeeMovistarNuevosQuery::create()
->where($condicion)
->limit($usuariosMax)
->find();
$log->debug("cantidad de usuarios a crear..." . count($usuariosACrear));
$log->debug("obteniendo partner ID...");
$mcAfeePartnerId = Utiles::getParametroConfiguracion('mcafee_partner_id');
$log->debug("comenzando proceso de creacion...");
foreach ($usuariosACrear as $index => $usuarioCrear):
$log->debug("generando item a procesar...");
$customerContextId = 'GLN_NEW_' . $usuarioCrear->getId() . '_' . $usuarioCrear->getAreaTel();
$nuevoUsuario = new UsuarioMcafee();
$nuevoUsuario->setUmcMcafeeTipoProducto(UsuarioMcafee::TIPO_MULTIDEVICE);
$nuevoUsuario->setUmcMcafeeAffid(419);
$nuevoUsuario->setUmcMcafeeKeycard(null);
$nuevoUsuario->setUmcMcafeeSku(null);
$nuevoUsuario->setUmcMcafeeCcid($customerContextId);
$nuevoUsuario->setUmcMcafeeEmail(null);
$nuevoUsuario->setUmcMovistarEmail($usuarioCrear->getCorreo());
$nuevoUsuario->setUmcMovistarRut($usuarioCrear->getRut());
if($usuarioCrear->getFonoContactoMovil1() != 0){
$telMovil = $usuarioCrear->getFonoContactoMovil1();
}else {
$telMovil = $usuarioCrear->getFonoContactoMovil2();
}
$nuevoUsuario->setUmcMovil($telMovil);
$nuevoUsuario->setUmcFijo($usuarioCrear->getAreaTel());
$nuevoUsuario->setUmcMovistarAny(null);
$nuevoUsuario->setUmcParametroEncriptado(null);
//$nuevoUsuario->setUmcMovistarAny(explode("@", $usuarioMigrar->getEmailAddress())[0]);
$nuevoUsuario->setUmcMovistarActivo(UsuarioMcafee::ACTIVO_MOVISTAR_FALSE);
//$nuevoUsuario->setUmcParametroEncriptado($nuevoUsuario->generarUsuarioEncriptadoParaMovistarNuevo());
$nuevoUsuario->setUmcCustomerId(null);
$nuevoUsuario->setUmcPermiteEmail(1);
$nuevoUsuario->setUmcFechaDesuscripcionEmail(null);
$nuevoUsuario->setUmcEliminado(UsuarioMcafee::ELIMINADO_FALSE);
$nuevoUsuario->setCreatedAt(new \DateTime());
$nuevoUsuario->setUpdatedAt(new \DateTime());
$nuevoUsuario->save();
$log->debug("comenzando a generar registro de la transaccion..");
$mcAfeeTx = new McafeeTransaccion();
$mcAfeeTx->setMtrTipo(McafeeTransaccion::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
$mcAfeeTx->generarNroReferencia();
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_NO_ENVIADA);
$mcAfeeTx->setUsuarioMcafee($nuevoUsuario);
$xmlPartnerContext = '<PARTNERCONTEXT>'
. ' <HEADER> '
. ' <PARTNER PARTNER_ID="'.$mcAfeePartnerId.'"/> '
. ' </HEADER> '
. ' <DATA> '
. ' <CUSTOMERCONTEXT ID="'.$customerContextId.'" REQUESTTYPE="NEW"> '
. ' <ACCOUNT> '
. ' <EMAILADDRESS><![CDATA['.$nuevoUsuario->getUmcMovistarEmail().']]></EMAILADDRESS> '
. ' <FIRSTNAME><![CDATA['.$usuarioCrear->getNombres().']]></FIRSTNAME> '
. ' <LASTNAME><![CDATA[]]></LASTNAME> '
. ' <PASSWORD><![CDATA[]]></PASSWORD> '
. ' <PREFERENCES> '
. ' <PREFERENCE TYPE="LANG">'.self::LENGUAJE.'</PREFERENCE> '
. ' </PREFERENCES> '
. ' </ACCOUNT> '
. ' <ORDER PARTNERREF="'.$mcAfeeTx->getMtrReferencia().'" REF=""> '
. ' <ITEMS> '
. ' <ITEM SKU="'.self::SKU_DESTINY.'" QTY=”1” ACTION="PD" LIC_QTY="1"/> '
. ' </ITEMS> '
. ' </ORDER> '
. ' </CUSTOMERCONTEXT> '
. ' </DATA> '
. '</PARTNERCONTEXT>';
$log->debug("xml generado para el item :" . $xmlPartnerContext);
$mcAfeeTx->setMtrXmlEnvio($xmlPartnerContext);
$mcAfeeTx->save();
$peticion = array('requestXML' => $xmlPartnerContext);
$log->debug('Peticion a McAfee->' . print_r($peticion, true));
///INICIO PETICION MCAFEE
try {
//Llamada McAfee
$wsMcafeePostRequestUrl = Utiles::getParametroConfiguracion('ws_mcafee_post_request_url');
$SOAP = new \SoapClient($wsMcafeePostRequestUrl, array("connection_timeout" => self::TIMEOUT, 'cache_wsdl' => WSDL_CACHE_NONE));
$log->debug('Llamando metodo "ProcessRequestWS" url WS->' . $wsMcafeePostRequestUrl);
$respuesta = $SOAP->ProcessRequestWS($peticion);
$log->debug('Respuesta McAfee->' . print_r($respuesta, true));
if ($respuesta != null) {
$mcAfeeTx->setMtrXmlRespuesta(print_r($respuesta->ProcessRequestWSResult, TRUE));
$arrayRespuesta = $this->procesarXmlRespuesta($respuesta);
$output->writeln('COMANDO FINALIZADO.');
exit();
$log->debug("Xml procesado en forma de array: " . print_r($arrayRespuesta, true));
if ($arrayRespuesta == NULL) {
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_FRACASADA);
$mcAfeeTx->save();
McafeeTransaccionPendiente::generarTransaccionPendiente($nuevoUsuario, McafeeTransaccionPendiente::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
$log->err('$arrayRespuesta == NULL para mcAfeeTx id->' . $mcAfeeTx->getMtrId() . 'PETICION:' . print_r($peticion, TRUE));
$logError = Utiles::setLog('command::migrarUsuariosSuscripcion', 'error/wsMigrarUsuariosMcAfee');
$logError->err('$arrayRespuesta == NULL para mcAfeeTx id->' . $mcAfeeTx->getMtrId() . 'PETICION:' . print_r($peticion, TRUE));
$cantidadPendientes++;
$failedAlready = true;
} else {
$log->debug('$arrayRespuesta McAfee->' . print_r($arrayRespuesta, true));
$mcAfeeTx->setMtrCodigoRetorno($arrayRespuesta['mcAfeeReturnCode']);
$log->debug('Descripcion de la transaccion ->' . $arrayRespuesta['mcAfeeReturnDesc']);
if ($arrayRespuesta['mcAfeeReturnCode'] == '1000' || $arrayRespuesta['mcAfeeReturnCode'] == '5001' || $arrayRespuesta['mcAfeeReturnCode'] == '5002') {
//validacion datos Tx
if ($arrayRespuesta['mcAfeeCostumerId'] == $nuevoUsuario->getUmcMcafeeCcid() && $arrayRespuesta['mcAfeeOrderPartnerRef'] == $mcAfeeTx->getMtrReferencia()) {
/**
* @todo agregar urlProduct.
*/
$mcAfeeTx->setMtrReferenciaMcafee($arrayRespuesta['mcAfeeOrderRef']);
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_SUCCESS);
$mcAfeeTx->setMtrProductdownloadurl($arrayRespuesta['mcAfeeProductDownloadUrl']);
$nuevoUsuario->setUmcMcafeeSku(self::SKU_DESTINY);
$nuevoUsuario->setUmcMcafeeKeycard($arrayRespuesta['mcAfeeProductDownloadUrl']);
$nuevoUsuario->setUmcMcafeeStatus($arrayRespuesta['mcAfeeReturnCode']);
$nuevoUsuario->save();
$mcAfeeTx->save();
$log->debug('Transaccion finalizada con exito!. id Transaccion->' . $mcAfeeTx->getMtrId());
$cantidadProcesados++;
} else {
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_FRACASADA);
$mcAfeeTx->save();
McafeeTransaccionPendiente::generarTransaccionPendiente($nuevoUsuario, McafeeTransaccionPendiente::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
$log->err('Respuesta Costumer Id->' . $arrayRespuesta['mcAfeeCostumerId'] . 'y Costumer id->' . $nuevoUsuario->getUmcMcafeeCcid());
$log->err('nro de referencia Respuesta->' . $arrayRespuesta['mcAfeeOrderPartnerRef'] . 'y nro referencia->' . $mcAfeeTx->getMtrReferencia());
$log->err('la transaccion fracaso debido a inconsistencia en los datos.' . print_r($arrayRespuesta, true));
$logError = Utiles::setLog('command::crearUsuariosSuscripcion', 'error/wsCrearUsuariosMcAfee');
$logError->err('Respuesta Costumer Id->' . $arrayRespuesta['mcAfeeCostumerId'] . 'y Costumer id->' . $nuevoUsuario->getUmcMcafeeCcid());
$logError->err('nro de referencia Respuesta->' . $arrayRespuesta['mcAfeeOrderPartnerRef'] . 'y nro referencia->' . $mcAfeeTx->getMtrReferencia());
$logError->err('la transaccion fracaso debido a inconsistencia en los datos.' . print_r($arrayRespuesta, true));
$cantidadPendientes++;
$failedAlready = true;
}
} else {//codigo de retorno distinto de 1000 y 5001
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_FRACASADA);
$mcAfeeTx->save();
McafeeTransaccionPendiente::generarTransaccionPendiente($nuevoUsuario, McafeeTransaccionPendiente::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
$log->err('returnCode distinto de 1000 y 5001 que son los exitosos.' . print_r($arrayRespuesta, true));
$logError = Utiles::setLog('command::crearUsuariosSuscripcion', 'error/wsCrearUsuariosMcAfee');
$logError->err('returnCode distinto de 1000 y 5001 que son los exitosos.' . print_r($arrayRespuesta, true));
$cantidadPendientes++;
$failedAlready = true;
}
}
} else {//$respuesta ==NULL
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_FRACASADA);
$mcAfeeTx->save();
McafeeTransaccionPendiente::generarTransaccionPendiente($nuevoUsuario, McafeeTransaccionPendiente::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
$log->err('respuesta NULL para peticion:' . print_r($peticion, true));
$logError = Utiles::setLog('command::crearUsuariosSuscripcion', 'error/wsCrearUsuariosMcAfee');
$logError->err('respuesta NULL para peticion:' . print_r($peticion, true));
$cantidadPendientes++;
$failedAlready = true;
}
} catch (\Exception $exc) {
$mcAfeeTx->setMtrEstado(McafeeTransaccion::ESTADO_FRACASADA);
$mcAfeeTx->save();
if (!$esTxPendiente) {
McafeeTransaccionPendiente::generarTransaccionPendiente($nuevoUsuario, McafeeTransaccionPendiente::TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR);
}
$log->err('Error al llamar WS. Exception:' . $exc->getMessage() . ' | peticion:' . print_r($peticion, true));
$logError = Utiles::setLog('command::crearUsuariosSuscripcion', 'error/wsCrearUsuariosMcAfee');
$logError->err('Error al llamar WS. Exception:' . $exc->getMessage() . ' | peticion:' . print_r($peticion, true));
//return FALSE;
$cantidadPendientes++;
$failedAlready = true;
}
$ultimoUsuarioProcesado = $usuarioCrear;
endforeach;
//GENERANDO REGISTRO DE PROCESO
$registroProceso = new McafeeUltimoProcesoCreacion();
$registroProceso->setUsuariosMcafeeMovistarNuevos($ultimoUsuarioProcesado);
$registroProceso->setMucCantidadProcesados($cantidadProcesados);
$registroProceso->setMucCantidadPendientes($cantidadPendientes);
$registroProceso->setCreatedAt(new \DateTime());
$registroProceso->setUpdatedAt(new \DateTime());
$registroProceso->save();
$output->writeln('COMANDO FINALIZADO.');
}
/**
* Procesa respuesta mcafee, extrae valores y atributos y devuelve un array con estos valores.
*
* @param string $xmlRespuesta
* @return array
*/
private static function procesarXmlRespuesta($xmlRespuesta){
$log = Utiles::setLog('WsBundle\Lib\controladorMcAfee::procesarXmlRespuesta', 'ws/wsMcAfee');
$arrayRespuesta= Array();
try{
$xObjRespuesta = simplexml_load_string($xmlRespuesta->ProcessRequestWSResult, 'SimpleXMLElement', LIBXML_NOCDATA);//LIBXML_NOCDATA atributos dentro de tags
// $log->debug('$xObjRespuesta->'.print_r($xObjRespuesta,true));
if (!is_object($xObjRespuesta)){
$log->err('Error al instanciar objeto xml->' . $xmlRespuesta->ProcessRequestWSResult);
$logError = Utiles::setLog('WsBundle\Lib\controladorMcAfee::procesarXmlRespuesta', 'error/wsMcAfee');
$logError->err('Error al instanciar objeto xml->' . $xmlRespuesta->ProcessRequestWSResult);
}
else{
//<PARTNERRESPONSECONTEXT>
// <HEADER>
// <PARTNER PARTNER_ID="817" />
// </HEADER>
// <DATA>
// <RESPONSECONTEXT ID="GL_19_56962451306">
// <RETURNCODE>5001</RETURNCODE>
// <RETURNDESC>Transaction success: Warning, Email Address Exists.</RETURNDESC>
// <ORDER PARTNERREF="GL_ES_SUS_166_05032015124229" REF="NCS507747897" />
// <ACCOUNT>
// <EMAILADDRESS>luis.arcos@gearlabs.cl</EMAILADDRESS>
// <PASSWORD><![CDATA[asd123123]]></PASSWORD>
// </ACCOUNT>
// <PRODUCTDOWNLOADURL><![CDATA[http://home.mcafee.com/downloads/keycard.aspx?affid=817&culture=ES-MX&tk=iUMYjxCvNsr_CFQUtZRUYEr2xAeMOTPNFmlw3xXs53KnUoRZDtyoIzRyf5Ad_hr_0&tp=48]]></PRODUCTDOWNLOADURL>
// </RESPONSECONTEXT>
// </DATA>
//</PARTNERRESPONSECONTEXT>
$arrayRespuesta['mcAfeePartnerId'] = (string) $xObjRespuesta->HEADER->PARTNER->attributes()->PARTNER_ID;
$arrayRespuesta['mcAfeeCostumerId'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->attributes()->ID;
$arrayRespuesta['mcAfeeReturnCode'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->RETURNCODE;
$arrayRespuesta['mcAfeeReturnDesc'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->RETURNDESC;
$arrayRespuesta['mcAfeeProductDownloadUrl'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->PRODUCTDOWNLOADURL;
if (isset($xObjRespuesta->DATA->RESPONSECONTEXT->ORDER)){
$arrayRespuesta['mcAfeeOrderPartnerRef'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->ORDER->attributes()->PARTNERREF;
$arrayRespuesta['mcAfeeOrderRef'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->ORDER->attributes()->REF;
}
if (isset($xObjRespuesta->DATA->RESPONSECONTEXT->ACCOUNT)){
$arrayRespuesta['mcAfeeEmailUsuario'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->ACCOUNT->EMAILADDRESS;
$arrayRespuesta['mcAfeePasswordUsuario'] = (string) $xObjRespuesta->DATA->RESPONSECONTEXT->ACCOUNT->PASSWORD;
}
}
}
catch (\Exception $ex) {
$log->crit("Error al leer detalles XML.".$xmlRespuesta->ProcessRequestWSResult);
$log->crit("Detalle error ". print_r($ex, TRUE));
$arrayRespuesta = array();
}
return $arrayRespuesta;
}
}
......@@ -888,5 +888,43 @@ class HomeController extends Controller {
$response->setFilename($titulo);
return $response;
}
public function testAction(Request $request){
print_r($this->acortarUrl(array("url" => "https://www.seguridadtotalmcafee.cl/descargar/7/MzUzODU0NDUzMDAwMDY3NTN8MDUxMDIyMzQzMTNATVVMVElERVZJQ0VNQ0FGRUUzLkNM/sms/78", "desc" => "")));
exit();
}
private function acortarUrl($data){
$url = "http://url.gearlabs.cl/acortar";
$httpStatus = null;
try {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
$output = curl_exec($ch);
$httpStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($httpStatus == 200) {
$arrayRetorno = json_decode($output, true);
return $arrayRetorno['shortLink'];
}
else {
return array('error' => 'httpStatus distinto de Response::HTTP_OK');
}
}
catch (\Exception $e) {
return array(
'error' => 'Error',
'detalle' => $e,
);
}
}
}
......@@ -99,6 +99,10 @@ backend_researcher_enviar_correo:
path: /researcher/enviar/correo
defaults: {_controller: BackendBundle:Research:enviarCorreo}
methods: [POST]
test:
path: /test
defaults: {_controller: BackendBundle:Home:test}
\ No newline at end of file
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