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
52d672c6
Commit
52d672c6
authored
Feb 17, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ダッシュボードに戻った時に、最新の状態に表示を更新するようにした。
parent
7e53583d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
+0
-6
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
+3
-0
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
View file @
52d672c6
...
...
@@ -254,12 +254,6 @@ public class OperationLogic extends AbstractLogic {
String
operationTaskDirPath
=
ABVEnvironment
.
getInstance
().
getOperationDirFile
(
deleteOperationDto
.
operationId
);
FileUtil
.
delete
(
operationTaskDirPath
);
}
// 一通りの更新が終わってから、ダッシュボード用の情報を取得する
// todo
Logger
.
i
(
TAG
,
"update tasks on dashboard"
);
ReportStatusLogic
logic
=
new
ReportStatusLogic
();
logic
.
loadReportStatus
();
}
/**
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
View file @
52d672c6
...
...
@@ -43,6 +43,7 @@ import jp.agentec.abook.abv.bl.dto.comparator.ReportStatusCompalator;
import
jp.agentec.abook.abv.bl.logic.AbstractLogic
;
import
jp.agentec.abook.abv.bl.logic.LockReportLogic
;
import
jp.agentec.abook.abv.bl.logic.OperationLogic
;
import
jp.agentec.abook.abv.bl.logic.ReportStatusLogic
;
import
jp.agentec.abook.abv.bl.logic.UnlockReportLogic
;
import
jp.agentec.abook.abv.launcher.android.R
;
import
jp.agentec.abook.abv.ui.common.constant.ErrorCode
;
...
...
@@ -119,6 +120,8 @@ public class DashboardActivity extends OperationActivity {
protected
void
onResume
()
{
super
.
onResume
();
try
{
ReportStatusLogic
logic
=
new
ReportStatusLogic
();
logic
.
loadReportStatus
();
getReportStatusCount
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
...
...
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