]> git.koha-community.org Git - koha.git/commit
Bug 34136: Add ability to render a report using a notice template
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 27 Jun 2023 16:44:18 +0000 (12:44 -0400)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 27 Oct 2023 19:46:22 +0000 (16:46 -0300)
commit94cee66ec7de1ab76f14be70e98afed05f230460
tree31d8db3b10d284cf09e7e076891568abcbbcab99
parent1d58ebfee3986a4c4e7027ba2ce76a4274d57e2a
Bug 34136: Add ability to render a report using a notice template

Sometimes it is useful to display the results of a report in a non-table format. We should be able to create notice templates to render reports.

Test Plan:
1) Apply this patch
2) Restart all the things!
3) Create a new notice template using the new "Report" option from the
   "New notice" pulldown.
4) In the "Print" area, paste the following template:

[% FOREACH b IN data %]
<div class="panel panel-default">
  <div class="panel-heading">[% b.surname %], [% b.firstname %]</div>
  <div class="panel-body">Expiration: [% b.dateexpiry %]</div>
  <div class="panel-footer">ID: [% b.borrowernumber %]</div>
</div>
[% END %]

5) Create a report with the query: SELECT * FROM borrowers
6) Once the report is saved, use the new "Run with template" option to
   select the template you just created.
7) Note that instead of the results being a paged table, you instead
   see the results rendered as cards!

Signed-off-by: Sam Lau <samalau@gmail.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc
koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt
reports/guided_reports.pl