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
54d5b435
Commit
54d5b435
authored
Sep 13, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新着更新時にチャット用プッシュメッセージ取得できない問題対応
parent
aa861d80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
+10
-0
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
View file @
54d5b435
...
...
@@ -292,6 +292,16 @@ public class OperationLogic extends AbstractLogic {
OperationListJSON
json
=
AcmsClient
.
getInstance
(
cache
.
getUrlPath
(),
networkAdapter
).
getOperationList
(
param
);
List
<
OperationDto
>
serverOperations
=
json
.
operationList
;
//サーバーからチャットプシュデータを取得
if
(
ABVDataCache
.
getInstance
().
serviceOption
.
isChat
())
{
ChatPushDataJSON
chatPushJson
=
AcmsClient
.
getInstance
(
cache
.
getUrlPath
(),
networkAdapter
).
getChatPushList
(
param
);
for
(
PushMessageDto
dto
:
chatPushJson
.
pushMessageList
)
{
PushMessageDto
dtoTemp
=
mPushMessageDao
.
selectChat
(
dto
.
pushMessageId
,
dto
.
operationId
,
dto
.
pushSendDate
);
if
(
dtoTemp
==
null
)
{
mPushMessageDao
.
insert
(
dto
);
}
}
}
for
(
OperationDto
serverOperationDto
:
serverOperations
)
{
// 登録フラグ
boolean
insertFlg
=
true
;
...
...
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