mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Include date and time at bottom of report pages
This commit is contained in:
parent
10ac30f776
commit
a1389ba68a
@ -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));
|
||||
|
@ -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>";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user