2

我一直在寻找一种在 APYDataGridBundle 网格应该返回但找不到答案的项目列表上设置条件的方法。

有没有办法设置 DQL 查询并将其传递给网格以显示我想要获取的确切查询结果?

这是代码:

public function filteredlistAction(){
    // Create simple grid based on the entity
    $source = new Entity('ACMEBundle:MyEntity');
    // Get a grid instance
    $grid = $this->get('grid');

    // Attach the source to the grid
    $grid->setSource($source);
    ...
    ...

    **$grid->getColumns()->getColumnById('myentity_filter_column')->setData('the exact value I tried to match');**

    // Manage the grid redirection, exports and the response of the controller
    return $grid->getGridResponse('ACMEBundle:MyEntity:index_filteredlist.html.twig');
}
4

2 回答 2

3

您可以在执行之前添加一个回调(闭包或可调用)以运行QueryBuilder- 它的完成方式如下:

$source->manipulateQuery(
    function ($query)
    {
        $query->resetDQLPart('orderBy');
    }
);

$grid->setSource($source);

$query是一个实例,QueryBuilder因此您可以更改所需的任何内容

示例取自此处的文档

于 2013-03-21T11:40:26.533 回答
1

一个更“复杂”的查询。

$estaActivo = 'ACTIVO';
$tableAlias = $source->getTableAlias();
$source->manipulateQuery(
                            function ($query) use ($tableAlias, $estaActivo)
                            {
                                $query->andWhere($tableAlias . '.estado = :estaActivo')
                                      ->andWhere($tableAlias . '.tipoUsuario IN (:rol)')
                                      ->setParameter('estaActivo', $estaActivo)
                                      ->setParameter('rol', array('VENDEDOR','SUPERVISOR'), \Doctrine\DBAL\Connection::PARAM_STR_ARRAY);
                            }
                        );

干杯!

于 2015-09-04T06:35:15.200 回答