BF [ 1665129 ] Bar Graph is not ordered
This commit is contained in:
parent
4465790c7d
commit
09437255d5
|
@ -178,7 +178,8 @@ public class MMeasureCalc extends X_PA_MeasureCalc
|
||||||
} // date
|
} // date
|
||||||
String sql = addRestrictions(sb.toString(), restrictions, role);
|
String sql = addRestrictions(sb.toString(), restrictions, role);
|
||||||
if (groupBy != null)
|
if (groupBy != null)
|
||||||
sql += " GROUP BY " + groupBy;
|
sql += " GROUP BY " + groupBy
|
||||||
|
+ " ORDER BY " + groupBy; // teo_sarca, [ 1665129 ] Bar Graph is not ordered
|
||||||
//
|
//
|
||||||
log.fine(sql);
|
log.fine(sql);
|
||||||
return sql;
|
return sql;
|
||||||
|
|
Loading…
Reference in New Issue