在Symfony2中验证阵列汇总2



我是Symfony2 Doctrine的新手,我正在寻找一种验证ArrayCollection中唯一性的方法。可能已经回答了问题,但是我无法理解如何解决。我有一个 seactamientosserviciosprestador a callback

namespace PrestadoresPrincipalBundleEntity;
use DoctrineORMMapping as ORM;
use SymfonyComponentValidatorConstraints as Assert;
use DoctrineCommonCollectionsArrayCollection;
use SymfonyComponentValidatorExecutionContext;
/**
 * PrestadoresPrincipalBundleEntityRelevamientosserviciosprestador
 *
 * @ORMTable(name="relevServiciosPrestador")
 * @ORMEntity(repositoryClass="PrestadoresPrincipalBundleRepositoryRelevamientosserviciosprestadorRepository")*
 * @AssertCallback(methods={"sonUnicosLosTiposDeReclamoq"})  
 */
class Relevamientosserviciosprestador
{
    /**
     * @var integer $id
     *
     * @ORMColumn(name="id", type="integer", nullable=false)
     * @ORMId
     * @ORMGeneratedValue(strategy="IDENTITY")
     */
    private $id;
    ....
    ....
    /**
     * @ORMOneToMany(targetEntity="Atencionusuarioreclamo", mappedBy="relevamiento_id", cascade={"persist"})
     * @AssertValid 
     */
    private $reclamos;         
    ....
    ....
    public function __construct()
    {
        $this->personal = new ArrayCollection();
        $this->reclamos = new ArrayCollection();        
    }
    ....
    ....
     /*Acá intentaremos validar si los tipos de reclamo que se están cargando son únicos para ese relevamiento*/
    public function sonUnicosLosTiposDeReclamoq(ExecutionContext $context)
    {
        foreach ($this->reclamos as $reclamo){
            /*Here, I get all entities, not only those related to a Relevamientosserviciosprestador*/
            var_dump($reclamo->gettiporeclamo()->getnombre());
        }
    }
}

atencionusuarioreclamo 实体:

namespace PrestadoresPrincipalBundleEntity;
use DoctrineORMMapping as ORM;
use SymfonyComponentValidatorConstraints as Assert;

/**
 * PrestadoresPrincipalBundleEntityAtencionusuarioreclamo
 *
 * @ORMTable(name="atencionUsuarioReclamo")
 * @ORMEntity
 */
class Atencionusuarioreclamo
{
    /**
     * @var integer $id
     *
     * @ORMColumn(name="id", type="integer", nullable=false)
     * @ORMId
     * @ORMGeneratedValue(strategy="IDENTITY")
     */
    private $id;
    /**
     * @var Atencionusuariosede
     *
     * @ORMManyToOne(targetEntity="Atencionusuariosede")
     * @ORMJoinColumns({
     *   @ORMJoinColumn(name="nroSede", referencedColumnName="id")
     * })
     */
    private $nrosede;
    /**
     * @var relevamiento_id
     *
     * @ORMManyToOne(targetEntity="Relevamientosserviciosprestador")
     * @ORMJoinColumns({
     *   @ORMJoinColumn(name="relevamiento_id", referencedColumnName="id")
     * })
     */
    private $relevamiento_id;
    /**
     * @var Prmreclamotipo
     *
     * @ORMManyToOne(targetEntity="Prmreclamotipo")
     * @ORMJoinColumns({
     *   @ORMJoinColumn(name="tipoReclamo", referencedColumnName="id")
     * })
     * @AssertNotBlank()     
     */
    private $tiporeclamo;
    ....
    ....
    ....
    ....

}

我想在给定的 sede sedialamiento_id

中, tiporeclamo 的独特性

我使用具有>" atencionusuarioreclamo"的sub表单集合的表单创建或编辑 seactemientosserviciosprestador 。提交时, secontamientosserviciosprestador的回调执行但 $ this-> reclamos 所有保存的实体不仅与 secontamientAsserveSioServicioServicioServicioServiciosprestador /strong>我编辑的内容。这是预期的Behauvoir还是我缺少什么?我还测试了如何在Symfony2中验证实体集合中的独特实体中提到的方法2但是,它再次检查所有实体。

我还读过Doctrine2 arrayCollection,但我不明白它是否解决了问题。
拜托,您能告诉我如何在持续存在阵列汇票之前管理唯一性吗?
对不起,我的英语不好
预先感谢
伊万

PHP的array array_unique ( array $array [, int $sort_flags = SORT_STRING ] )

ArrayCollection->toArray()ArrayCollection->__construct()

结合

在您的情况下:

$Atencionusuarioreclamo = 
    new ArrayCollection(array_unique($Atencionusuarioreclamo->toArray());

相关内容

  • 没有找到相关文章

最新更新