bug: 模板查询 order by 在 group by拼写前面

This commit is contained in:
liujiaji 2018-06-22 17:17:21 +08:00
parent b66ee17151
commit 2ca6fb45a4

View File

@ -655,8 +655,8 @@ public abstract class AbstractAweDoQueryManage extends AbstractAweDoHandler {
}
String sSql = "SELECT " + sJboQuery + " ";
sSql += "FROM " + sJboFrom + this.sJboWhere + this.sJboOrder + " "
+ this.sJboGroup;
sSql += "FROM " + sJboFrom + this.sJboWhere + this.sJboGroup + " "
+ this.sJboOrder;
logger.debug("sql:" + sSql);
BizObjectManager classManage = JBOFactory
.getBizObjectManager(this.sJboClass);