mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
fix statistics display of months not used
This commit is contained in:
parent
4931e60bd5
commit
90e98ccfda
@ -241,7 +241,8 @@ void Statistics::adjustRange(QDate& start , QDate& last) {
|
||||
} else {
|
||||
last = qMin(last ,p_profile->general->statReportDate() );
|
||||
}
|
||||
start = qMin(start,last);
|
||||
start = qMax(start,p_profile->FirstDay()); // need if less than a years samples
|
||||
start = qMin(start,last); // insure start is always less than max. SHould be but???
|
||||
summaryInfo.update(start,last);
|
||||
}
|
||||
|
||||
@ -1399,20 +1400,16 @@ QString Statistics::GenerateCPAPUsage()
|
||||
// should never get here.
|
||||
number_periods = 12;
|
||||
}
|
||||
last = lastcpap;
|
||||
first = lastcpap;
|
||||
} else if (p_profile->general->statReportMode() == STAT_MODE_STANDARD) {
|
||||
firstcpap = lastcpap.addYears(-1).addDays(1);
|
||||
adjustRange(firstcpap,lastcpap);
|
||||
last = lastcpap;
|
||||
first = lastcpap;
|
||||
} else if (p_profile->general->statReportMode() == STAT_MODE_RANGE) {
|
||||
firstcpap = p_profile->general->statReportRangeStart();
|
||||
lastcpap = p_profile->general->statReportRangeEnd();
|
||||
adjustRange(firstcpap,lastcpap);
|
||||
first = firstcpap;
|
||||
last = lastcpap;
|
||||
}
|
||||
last = lastcpap;
|
||||
first = lastcpap;
|
||||
QList<Period> periods;
|
||||
|
||||
bool skipsection = false;;
|
||||
|
Loading…
Reference in New Issue
Block a user