Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
2c9e2cc3
Commit
2c9e2cc3
authored
Jul 05, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
カテゴリ画面での同期ボタン活性化できない・ソート順問題対応
parent
ecff1391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/OperationDao.java
+10
-4
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/OperationDao.java
View file @
2c9e2cc3
...
...
@@ -372,10 +372,15 @@ public class OperationDao extends AbstractDao {
StringBuffer
sql
=
new
StringBuffer
();
sql
.
append
(
" SELECT * "
);
sql
.
append
(
" FROM t_operation AS top"
);
sql
.
append
(
" INNER JOIN r_operation_group_master_relation AS rog"
);
sql
.
append
(
" ON rog.operation_id = top.operation_id"
);
sql
.
append
(
" WHERE rog.operation_group_master_id = ?"
);
sql
.
append
(
" ORDER BY top.operation_start_date DESC, top.operation_id DESC"
);
// INNER JOIN r_operation_group_master_relation
sql
.
append
(
" INNER JOIN r_operation_group_master_relation AS rog"
);
sql
.
append
(
" ON rog.operation_id = top.operation_id"
);
// LEFT OUTER JOIN r_operation_content
sql
.
append
(
" LEFT OUTER JOIN r_operation_content AS rpc "
);
sql
.
append
(
" ON top.operation_id = rpc.operation_id "
);
sql
.
append
(
" AND rpc.operation_content_flg = 1 "
);
sql
.
append
(
" WHERE rog.operation_group_master_id = ?"
);
sql
.
append
(
" ORDER BY top.operation_start_date DESC, top.operation_id DESC"
);
return
rawQueryGetDtoList
(
sql
.
toString
(),
new
String
[]
{
""
+
operationGroupMasterId
},
OperationDto
.
class
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment