Add report footer to first page of printed Statistics report.

All compliance data is on the first page of the report.
  Include report footer on this page in case user wants to give
  the doctor just the first page of the report.
This commit is contained in:
Guy Scharf 2022-01-14 06:39:00 -07:00
parent d4b943ef33
commit 2470e55b29
2 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,13 @@
<b>This page in other languages:</b>
<br><a href=http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes>http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes</a></p>
<p>
<b>Changes and fixes in OSCAR v1.3.1-beta-?</b>
<br>Portions of OSCAR are © 2019-2022 by
<i>The OSCAR Team</i></p>
<ul>
<li>[fix] Add footer to first page of printed Statistics report.</li>
</ul>
<p>
<b>Changes and fixes in OSCAR v1.3.1-beta-2</b>
<br>Portions of OSCAR are © 2019-2022 by
<i>The OSCAR Team</i></p>

View File

@ -1360,7 +1360,7 @@ void Statistics::printReport(QWidget * parent) {
qDebug() << "Enlarged printer font" << font << "printer default font set" << doc.defaultFont();
doc.setHtml(htmlReportHeaderPrint + htmlUsage + htmlMachineSettings + htmlMachines + htmlReportFooter);
doc.setHtml(htmlReportHeaderPrint + htmlUsage + htmlReportFooter + htmlMachineSettings + htmlMachines + htmlReportFooter);
// Dump HTML for use with HTML4 validator
// QString html = htmlReportHeaderPrint + htmlUsage + htmlMachineSettings + htmlMachines + htmlReportFooter;