Include date and time at bottom of report pages

This commit is contained in:
Seeker4 2019-09-06 22:14:32 -07:00
parent 10ac30f776
commit a1389ba68a
2 changed files with 9 additions and 3 deletions

View File

@ -556,7 +556,10 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
}
if (first) {
QString footer = QObject::tr("OSCAR v%1").arg(VersionString);
QDateTime timestamp = QDateTime::currentDateTime();
QString footer = QObject::tr("%1 OSCAR v%2").arg(timestamp.toString(MedDateFormat+" hh:mm"))
.arg(ReleaseStatus == "r" ? ShortVersionString : VersionString+" (" + gitRevision() + ")");
QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer,
QTextOption(Qt::AlignHCenter));

View File

@ -706,8 +706,11 @@ QString Statistics::generateFooter(bool showinfo)
if (showinfo) {
html += "<hr><div align=center><font size='-1'><i>";
html += tr("This report was generated by OSCAR v%1").arg(ShortVersionString) + "<br/>"
+tr("OSCAR is free open-source CPAP report software");
QDateTime timestamp = QDateTime::currentDateTime();
html += tr("This report was generated on %1 by OSCAR v%2").arg(timestamp.toString(MedDateFormat + " hh:mm"))
.arg(ReleaseStatus == "r" ? ShortVersionString : VersionString + " (" + gitRevision() + ")")
+ "<br/>"
+ tr("OSCAR is free open-source CPAP report software");
html += "</i></font></div>";
}