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;
|
||||
if (p_profile->general->statReportMode() == 1) {
|
||||
number_periods = PROFILE.FirstDay().daysTo(PROFILE.LastDay()) / 30;
|
||||
if (number_periods > 12) {
|
||||
number_periods = 12;
|
||||
}
|
||||
}
|
||||
|
||||
QDate last = lastcpap, first = lastcpap;
|
||||
|
||||
QList<Period> periods;
|
||||
|
||||
|
||||
|
||||
bool skipsection = false;;
|
||||
for (QList<StatisticsRow>::iterator i = rows.begin(); i != rows.end(); ++i) {
|
||||
StatisticsRow &row = (*i);
|
||||
@ -590,7 +595,7 @@ QString Statistics::GenerateHTML()
|
||||
first = p_profile->FirstGoodDay(row.type);
|
||||
|
||||
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(qMax(last.addDays(-6), first), last, tr("Last Week")));
|
||||
periods.push_back(Period(qMax(last.addDays(-29),first), last, tr("Last 30 Days")));
|
||||
@ -602,7 +607,8 @@ QString Statistics::GenerateHTML()
|
||||
periods.push_back(Period(last,last,tr("Last Session")));
|
||||
|
||||
bool done=false;
|
||||
for (int j=0; j < number_periods; j++) {
|
||||
int j=0;
|
||||
do {
|
||||
s=QDate(l.year(), l.month(), 1);
|
||||
if (s < first) {
|
||||
done = true;
|
||||
@ -610,9 +616,26 @@ QString Statistics::GenerateHTML()
|
||||
}
|
||||
if (p_profile->countDays(row.type, s, l) > 0) {
|
||||
periods.push_back(Period(s, l, s.toString("MMMM")));
|
||||
j++;
|
||||
}
|
||||
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());
|
||||
}
|
||||
QString line;
|
||||
line += QString("<tr class=datarow><td>%1</td>").arg(name);
|
||||
for (int j=0; j < periods.size(); j++) {
|
||||
QString val=row.value(periods.at(j).start,periods.at(j).end);
|
||||
line += QString("<td>%2</td>")
|
||||
.arg(val);
|
||||
line += QString("<tr class=datarow><td width=25%>%1</td>").arg(name);
|
||||
int np = periods.size();
|
||||
int width;
|
||||
for (int j=0; j < np; j++) {
|
||||
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 += "</tr>\n";
|
||||
|
Loading…
Reference in New Issue
Block a user