FortesReport was initially produced by a national company: Fortes Sistemas. This report generator has become so good that many have converted their reports to it and prefer to use it over other generators. His description is very complete on the website:
FortesReport is a powerful report generator available as a packaged component for Delphi. In FortesReport, reports are composed of bands that have specific functions in the print flow. You define groupings, sublevels and totals simply by hierarchical relationship between tracks. In addition, FortesReport has a rich palette of components for text, graphics, formulas, barcodes, filters and layout.
It has a version for the Lazarus IDE and also for the Delphi Community. Having a working version for the Delphi Community is very good since the competitor that comes with Delphi, FastReport has serious limitations. In addition, most programmers already know QuickReport, whose way of creating reports is basically the same as FortesReport, and therefore, they would not feel so much difficulty in creating reports with it.
A glaring difference between Fortes-CE and FastReport(Delphi) is that in FortesReport the reports are built with components called bands that are placed on the form and so you create the layout, labels and other visual components for it to have events and you program them into events like OnPrint, OnBeforePrint, OnAferPrint, etc… so creating a report in Fortes requires some programming in Pascal. On the other hand, FastReport (analogous to LazReport for lazarus-ide) is much more visual with much less programming involved, once defining the data sources and how they intertwine (eg master/detail) the rest is to create the report visually.
Installation in Delphi Community
Fortes-CE must be installed from the repositories, as it is not yet featured in the Delphi IDE's GetIt services. The repository is:
https://github.com/fortesinformatica/fortesreport-ce
However it has utility support boss and can be installed from the command line very easily. If you are not familiar with the boss, simply follow the instructions on the site which boils down to installing the package in the IDE, something simple.
Installation in Lazarus-IDE
FortesReport is already in the Online Package Manager(OPM) and its installation is therefore very smooth. There is also the option to install from the command line using the utility boss.
Antes de prosseguir com a instalação, leia atentamente estes avisos importantes:
Se contudo preferir a instalação manual, segue o link com as instruções:
Aviso #1: Se for instalar via OPM, não misture a instalação desse pacote com outra simultânea, instale apenas e ele, e depois se precisar instale os demais pacotes.
Aviso #2: Se for instalar via OPM encontrará um pacote de nome similar intitulado “Fortes4Lazarus”. Ele é o mesmo gerador de relatório, porém é fornecido e mantido pela comunidade do Lazarus e vem embutido na IDE, porém não é instalado por padrão. O problema é que pacotes como ACBr usam obrigatóriamente o “Fortes-CE” e não é possivel até o momento ter os dois, isto é, “Fortes4Lazarus” e “Fortes-CE” no mesmo ambiente porque aparentemente eles tem nomes de entidades iguais internamente que confundem o compilador. Da vez que tentei, quebrei as dependencias.
Aviso #3: Se for instalar manualmente via GIT tenha certeza de ter instalado o pacote intitulado “cairo_canvas”, se prosseguir sem ele não há tanto problema assim porque o gerenciador de pacotes notará que essa dependencia acompanha o Lazarus e lhe perguntará se que ele próprio resolva a questão e respondendo afirmativamente o programa prosseguirá normalmente.
As instruções para instalação manual via GIT estão no link abaixo:
https://github.com/fortesinformatica/fortesreport-ce
Mas popularmente as instruções são as seguintes:
cd \ (ou a pasta desejada)
git clone https://github.com/fortesinformatica/fortesreport-ce.git
No exemplo acima, criamos a pasta C:\fortesreport-ce, lá estará nosso(s) pacote(s) de instalação.
Vá em Packages|Open Package(.lpk)… e na ordem faça a instalação(Use|Install) de:
“C:\fortesreport-ce\Packages\frce.lpk”

Conclusion
Geralmente tem muitos HowTo´s no YoutTube demonstrando sua utilização, será simples o aprendizado. Se já tem experiência com relatórios usando “bandas” como o QuickReport não terá dificuldades.
Se é a primeira vez que vai utilizá-lo é bom saber que ele tem vazamento de memória que não consegui identificar onde está. Portanto, ligue seu debugger para exibir vazamentos e se conseguir localizá-los, envie ao autor a correção.
Uma limitações neste gerador de relatórios é que ele carece do ambiente gráfico, assim se estiver pensando em produzir relatórios em PDF usando apenas interface de texto ou em forma de API(Rest) você não irá conseguir.