我需要通过 excel 或 pdf 导出奏鸣曲管理数据。我怎样才能做到这一点?有没有什么包可以帮助我做到这一点?
有任何想法吗!?
谢谢。
我需要通过 excel 或 pdf 导出奏鸣曲管理数据。我怎样才能做到这一点?有没有什么包可以帮助我做到这一点?
有任何想法吗!?
谢谢。
您必须覆盖管理员getExportFields()方法。
如果实体有一些 (X) 对多或多对 (X) 关系,您必须覆盖所有字段
public function getExportFields()
{
$exportFields = parent::getExportFields(); //It's not working in case of *-to many relation, so remove it, but it's ok for small customisation
$exportFields["Date"] = 'date'; //if your date is an instance of DateTime, you have to format it
$exportFields["User name"] = 'user.name'; // in case of *-to-many relations
$exportFields["Status"] = 'statusAsString'; //for customise format implement getStatusAsString() in you entity
return $exportFields;
}
要自定义要下载的报告类型,您必须覆盖,删除默认的:
public function getExportFormats()
{
return array(
'json', 'xml', 'csv', 'xls'
);
}
我已经为 Symfony 和 Sonata 实现了 Bundle 以将列表导出为 PDF。你可以在这里得到它:https ://github.com/whyte624/sonata-admin-extra-export-bundle 。它基于此处建议的解决方案:http: //cristian-radulescu.ro/article/add-pdf-export-functionality-in-sonataadminbundle.html。我知道这个问题已经很老了,但希望它对其他人有帮助。