mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Statistics Add Database has in front of date range.
This commit is contained in:
parent
b4682b4ccb
commit
dfde62db17
@ -1302,7 +1302,7 @@ QString Statistics::GenerateCPAPUsage()
|
|||||||
} else { // STAT_MODE_RANGE
|
} else { // STAT_MODE_RANGE
|
||||||
first = p_profile->general->statReportRangeStart();
|
first = p_profile->general->statReportRangeStart();
|
||||||
last = p_profile->general->statReportRangeEnd();
|
last = p_profile->general->statReportRangeEnd();
|
||||||
periods.push_back(Period(first,last,first.toString(MedDateFormat)+" -<br/>"+last.toString(MedDateFormat)));
|
periods.push_back(Period(first,last,first.toString(MedDateFormat)+" - "+last.toString(MedDateFormat)));
|
||||||
}
|
}
|
||||||
|
|
||||||
int days = p_profile->countDays(row.type, first, last);
|
int days = p_profile->countDays(row.type, first, last);
|
||||||
@ -1338,16 +1338,16 @@ QString Statistics::GenerateCPAPUsage()
|
|||||||
|
|
||||||
if (value == 0) {
|
if (value == 0) {
|
||||||
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
||||||
arg(tr("No %1 data available.").arg(machine));
|
arg(tr("Database has No %1 data available.").arg(machine));
|
||||||
} else if (value == 1) {
|
} else if (value == 1) {
|
||||||
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
||||||
arg(tr("%1 day of %2 Data on %3")
|
arg(tr("Database has %1 day of %2 Data on %3")
|
||||||
.arg(value)
|
.arg(value)
|
||||||
.arg(machine)
|
.arg(machine)
|
||||||
.arg(last.toString(MedDateFormat)));
|
.arg(last.toString(MedDateFormat)));
|
||||||
} else {
|
} else {
|
||||||
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>").arg(periods.size()+1).
|
||||||
arg(tr("%1 days of %2 Data, between %3 and %4")
|
arg(tr("Database has %1 days of %2 Data, between %3 and %4")
|
||||||
.arg(value)
|
.arg(value)
|
||||||
.arg(machine)
|
.arg(machine)
|
||||||
.arg(first.toString(MedDateFormat))
|
.arg(first.toString(MedDateFormat))
|
||||||
|
Loading…
Reference in New Issue
Block a user