mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix a Statistics page cell width bug
This commit is contained in:
parent
f042f4d7f2
commit
166c9ad839
@ -573,13 +573,18 @@ QString Statistics::GenerateHTML()
|
|||||||
|
|
||||||
int number_periods = 0;
|
int number_periods = 0;
|
||||||
if (p_profile->general->statReportMode() == 1) {
|
if (p_profile->general->statReportMode() == 1) {
|
||||||
number_periods = 12;
|
number_periods = PROFILE.FirstDay().daysTo(PROFILE.LastDay()) / 30;
|
||||||
|
if (number_periods > 12) {
|
||||||
|
number_periods = 12;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QDate last = lastcpap, first = lastcpap;
|
QDate last = lastcpap, first = lastcpap;
|
||||||
|
|
||||||
QList<Period> periods;
|
QList<Period> periods;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bool skipsection = false;;
|
bool skipsection = false;;
|
||||||
for (QList<StatisticsRow>::iterator i = rows.begin(); i != rows.end(); ++i) {
|
for (QList<StatisticsRow>::iterator i = rows.begin(); i != rows.end(); ++i) {
|
||||||
StatisticsRow &row = (*i);
|
StatisticsRow &row = (*i);
|
||||||
@ -587,10 +592,10 @@ QString Statistics::GenerateHTML()
|
|||||||
|
|
||||||
if (row.calc == SC_HEADING) { // All sections begin with a heading
|
if (row.calc == SC_HEADING) { // All sections begin with a heading
|
||||||
last = p_profile->LastGoodDay(row.type);
|
last = p_profile->LastGoodDay(row.type);
|
||||||
first = p_profile->FirstGoodDay(row.type);
|
first = p_profile->FirstGoodDay(row.type);
|
||||||
|
|
||||||
periods.clear();
|
periods.clear();
|
||||||
if (number_periods == 0) {
|
if (p_profile->general->statReportMode() == 0) {
|
||||||
periods.push_back(Period(last,last,tr("Most Recent")));
|
periods.push_back(Period(last,last,tr("Most Recent")));
|
||||||
periods.push_back(Period(qMax(last.addDays(-6), first), last, tr("Last Week")));
|
periods.push_back(Period(qMax(last.addDays(-6), first), last, tr("Last Week")));
|
||||||
periods.push_back(Period(qMax(last.addDays(-29),first), last, tr("Last 30 Days")));
|
periods.push_back(Period(qMax(last.addDays(-29),first), last, tr("Last 30 Days")));
|
||||||
@ -602,17 +607,35 @@ QString Statistics::GenerateHTML()
|
|||||||
periods.push_back(Period(last,last,tr("Last Session")));
|
periods.push_back(Period(last,last,tr("Last Session")));
|
||||||
|
|
||||||
bool done=false;
|
bool done=false;
|
||||||
for (int j=0; j < number_periods; j++) {
|
int j=0;
|
||||||
|
do {
|
||||||
s=QDate(l.year(), l.month(), 1);
|
s=QDate(l.year(), l.month(), 1);
|
||||||
if (s < first) {
|
if (s < first) {
|
||||||
done = true;
|
done = true;
|
||||||
s = first;
|
s = first;
|
||||||
}
|
}
|
||||||
if (p_profile->countDays(row.type, s, l)>0) {
|
if (p_profile->countDays(row.type, s, l) > 0) {
|
||||||
periods.push_back(Period(s, l, s.toString("MMMM")));
|
periods.push_back(Period(s, l, s.toString("MMMM")));
|
||||||
|
j++;
|
||||||
}
|
}
|
||||||
l= s.addDays(-1);
|
l = s.addDays(-1);
|
||||||
if (done || (l < first)) break;
|
} while ((l > first) && (j < number_periods));
|
||||||
|
|
||||||
|
// for (; j < number_periods; ++j) {
|
||||||
|
// s=QDate(l.year(), l.month(), 1);
|
||||||
|
// if (s < first) {
|
||||||
|
// done = true;
|
||||||
|
// s = first;
|
||||||
|
// }
|
||||||
|
// if (p_profile->countDays(row.type, s, l) > 0) {
|
||||||
|
// periods.push_back(Period(s, l, s.toString("MMMM")));
|
||||||
|
// } else {
|
||||||
|
// }
|
||||||
|
// l = s.addDays(-1);
|
||||||
|
// if (done || (l < first)) break;
|
||||||
|
// }
|
||||||
|
for (; j < number_periods; ++j) {
|
||||||
|
periods.push_back(Period(last,last, ""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -677,11 +700,23 @@ QString Statistics::GenerateHTML()
|
|||||||
name = calcnames[row.calc].arg(schema::channel[id].fullname());
|
name = calcnames[row.calc].arg(schema::channel[id].fullname());
|
||||||
}
|
}
|
||||||
QString line;
|
QString line;
|
||||||
line += QString("<tr class=datarow><td>%1</td>").arg(name);
|
line += QString("<tr class=datarow><td width=25%>%1</td>").arg(name);
|
||||||
for (int j=0; j < periods.size(); j++) {
|
int np = periods.size();
|
||||||
QString val=row.value(periods.at(j).start,periods.at(j).end);
|
int width;
|
||||||
line += QString("<td>%2</td>")
|
for (int j=0; j < np; j++) {
|
||||||
.arg(val);
|
if (p_profile->general->statReportMode() == 1) {
|
||||||
|
width = j < np-1 ? 6 : 100 - (25 + 6*(np-1));
|
||||||
|
} else {
|
||||||
|
width = 75/np;
|
||||||
|
}
|
||||||
|
|
||||||
|
line += QString("<td width=%1%>").arg(width);
|
||||||
|
if (!periods.at(j).header.isEmpty()) {
|
||||||
|
line += row.value(periods.at(j).start, periods.at(j).end);
|
||||||
|
} else {
|
||||||
|
line +=" ";
|
||||||
|
}
|
||||||
|
line += "</td>";
|
||||||
}
|
}
|
||||||
html += line;
|
html += line;
|
||||||
html += "</tr>\n";
|
html += "</tr>\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user