mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add model number to printed daily report.
This commit is contained in:
parent
31fc47a5c5
commit
65f3f53686
@ -193,7 +193,12 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
|
||||
cpapinfo += STR_TR_Machine + ": ";
|
||||
|
||||
|
||||
cpapinfo += cpap->brand() + " " + cpap->model() + "\n";
|
||||
cpapinfo += cpap->brand() + " " + cpap->model();
|
||||
QString mn = cpap->modelnumber();
|
||||
if (!mn.isEmpty()) {
|
||||
cpapinfo += " (" + mn + ")";
|
||||
}
|
||||
cpapinfo += "\n";
|
||||
|
||||
cpapinfo += STR_TR_Mode + ": " + day->getCPAPMode() + "\n";
|
||||
cpapinfo += day->getPressureSettings() + "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user