我只需要在报价列表中获取已接受的申请
应用程序实体具有“状态”作为属性。如果应用程序被接受“状态”得到“真”
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->add('id')
->add('job')
->add('mission')
->add('applications') ; // I need to get only accepted applications
}
我尝试为 Applications 制作两个管理类并只调用接受的管理类。但它不起作用
->add('applications' ,null, array('admin_code' => 'admin.acceptedApplications'))) ;
接受的 ApplicationAdmin 具有作为 createQuery 函数的以下代码:
/**
* {@inheritDoc}
*/
public function createQuery($context = 'list')
{
$query = $this->getModelManager()->createQuery($this->getClass(), 'entity');
$query->select('e');
$query->from($this->getClass(), 'e');
$query->where('e.state = :a');
$query->setParameter('a', true);
return $query;
}