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
f2866eb6
Commit
f2866eb6
authored
Apr 16, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#33492 作業一括更新後にアプリ側の更新ボタンをタップしても更新できない
parent
117f258e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
+2
-2
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
View file @
f2866eb6
...
@@ -269,7 +269,7 @@ public class OperationLogic extends AbstractLogic {
...
@@ -269,7 +269,7 @@ public class OperationLogic extends AbstractLogic {
if
(
taskReportJson
!=
null
)
{
if
(
taskReportJson
!=
null
)
{
// suggest登録・更新処理
// suggest登録・更新処理
registTaskReportItem
(
taskKey
,
reportLevel
,
taskReportJson
.
getJSONObject
(
"suggest"
)
);
registTaskReportItem
(
taskKey
,
reportLevel
,
taskReportJson
.
has
(
"suggest"
)
?
taskReportJson
.
getJSONObject
(
"suggest"
)
:
null
);
taskReportDto
.
jsonData
=
taskReportJson
.
toString
();
taskReportDto
.
jsonData
=
taskReportJson
.
toString
();
}
else
{
}
else
{
// taskJsonがnullの場合、jsonDataに空でセット
// taskJsonがnullの場合、jsonDataに空でセット
...
@@ -331,7 +331,7 @@ public class OperationLogic extends AbstractLogic {
...
@@ -331,7 +331,7 @@ public class OperationLogic extends AbstractLogic {
}
}
if
(
taskReportJson
!=
null
)
{
if
(
taskReportJson
!=
null
)
{
// suggest登録・更新処理
// suggest登録・更新処理
registTaskReportItem
(
taskKey
,
taskReportLevel
,
taskReportJson
.
getJSONObject
(
"suggest"
)
);
registTaskReportItem
(
taskKey
,
taskReportLevel
,
taskReportJson
.
has
(
"suggest"
)
?
taskReportJson
.
getJSONObject
(
"suggest"
)
:
null
);
taskReportDto
.
jsonData
=
taskReportJson
.
toString
();
taskReportDto
.
jsonData
=
taskReportJson
.
toString
();
}
else
{
}
else
{
...
...
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