Commit 21c1ed42 by Kim Jinsung

Task #43098【@Form】And/iOS 作業ソート順 仕様変更対応

parent 69991e8c
......@@ -321,7 +321,7 @@ public class OperationDao extends AbstractDao {
sql.append(" AND top.report_type in ("+ reportTypeStr +")");
}
sql.append(" ORDER BY top.operation_start_date DESC, top.operation_name ASC");
sql.append(" ORDER BY top.operation_name ASC");
Logger.v(TAG, "sql=%s", sql);
......@@ -490,7 +490,7 @@ public class OperationDao extends AbstractDao {
sql.append(" AND top.report_type in (" + reportTypeStr + ")");
}
sql.append(" ORDER BY top.operation_start_date DESC, top.operation_name ASC");
sql.append(" ORDER BY top.operation_name ASC");
//並び替え情報がないので以下はコメントアウト(次回開発のため残す)
// if (operationSortingType != null) {
// switch (operationSortingType) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment