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
50d804dc
Commit
50d804dc
authored
Apr 19, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
協業メッセージHotFix
parent
a915589b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/MessageInfoListJSON.java
+6
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookCommConstants.java
+3
-1
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/MessageInfoListJSON.java
View file @
50d804dc
...
...
@@ -46,8 +46,13 @@ public class MessageInfoListJSON extends AcmsCommonJSON {
chatMessageDto
.
shopMemberId
=
messageInfoJSON
.
getInt
(
ABookCommConstants
.
KEY
.
SHOP_MEMBER_ID
);
chatMessageDto
.
chatMessageId
=
messageInfoJSON
.
getInt
(
ABookCommConstants
.
KEY
.
MESSAGE_ID
);
chatMessageDto
.
message
=
messageInfoJSON
.
getString
(
ABookCommConstants
.
KEY
.
MESSAGE
);
chatMessageDto
.
messageType
=
messageInfoJSON
.
getInt
(
ABookCommConstants
.
KEY
.
MESSAGE_TYPE
);
if
(
ABookCommConstants
.
FLAG
.
MESSAGE_TYPE
.
COLLABORATION_START
.
equals
(
chatMessageDto
.
messageType
)
||
ABookCommConstants
.
FLAG
.
MESSAGE_TYPE
.
COLLABORATION_END
.
equals
(
chatMessageDto
.
messageType
))
{
chatMessageDto
.
message
=
messageInfoJSON
.
getJSONObject
(
ABookCommConstants
.
KEY
.
MESSAGE
).
toString
();
}
else
{
chatMessageDto
.
message
=
messageInfoJSON
.
getString
(
ABookCommConstants
.
KEY
.
MESSAGE
);
}
chatMessageDto
.
unreadCount
=
messageInfoJSON
.
getInt
(
ABookCommConstants
.
KEY
.
UNREAD_COUNT
);
if
(
messageInfoJSON
.
has
(
ABookCommConstants
.
KEY
.
TIME
))
{
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookCommConstants.java
View file @
50d804dc
...
...
@@ -104,7 +104,9 @@ public interface ABookCommConstants {
Integer
TEXT
=
0
;
Integer
PHOTO
=
1
;
Integer
VIDEO
=
2
;
Integer
SYSTEM
=
4
;
Integer
SYSTEM
=
3
;
Integer
COLLABORATION_START
=
4
;
Integer
COLLABORATION_END
=
5
;
}
Integer
GROUP_REQUEST_ALL
=
0
;
}
...
...
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