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
b5b73a59
You need to sign in or sign up before continuing.
Commit
b5b73a59
authored
May 19, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'features/1.3.200_41596' into features/1.3.200
parents
df73f243
4b9e522f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
3 deletions
+26
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+2
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+15
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/CheckOZDViewActivity.java
+1
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+8
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
b5b73a59
...
...
@@ -1310,7 +1310,8 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
@Override
public
void
run
()
{
// 実行Javascript - 閉じる
ActivityHandlingHelper
.
getInstance
().
callOzdHtmlScript
(
"javascript:CHK.cancelOzReport()"
);
ActivityHandlingHelper
.
getInstance
().
callOzdHtmlScript
(
"javascript:CHK.afterABookCheckApi('"
+
ABookKeys
.
CMD_CANCEL_TASK_REPORT
+
"', '', '0', '')"
);
ActivityHandlingHelper
.
getInstance
().
reloadPdfTaskIcon
(
mTaskKey
);
Logger
.
d
(
TAG
,
"ozdCancelProcess"
);
}
});
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
b5b73a59
...
...
@@ -1955,4 +1955,19 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
}
}
}
/**
* 図面タイプのみ利用
* OZ画面閉じた後、タスクアイコンの再描画
* @param taskKey
*/
public
void
reloadPdfTaskIcon
(
String
taskKey
)
{
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
if
(
activity
instanceof
ContentViewActivity
)
{
((
ContentViewActivity
)
activity
).
reloadPdfTaskIcon
(
taskKey
);
}
}
}
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/CheckOZDViewActivity.java
View file @
b5b73a59
...
...
@@ -181,9 +181,8 @@ public class CheckOZDViewActivity extends ABVContentViewActivity {
public
void
onClick
(
View
v
)
{
mButtonStatus
=
R
.
id
.
btn_close
;
// HTML側の分岐処理を行うため変数に値を渡す
//#41596 OZの報告入力フォームで☓をタップした際の動作がおかしい
//Javascript呼ばないようにし、連続作業と関係なく閉じる処理追加
finishActivity
();
// doProcess(); // HTML側の
処理を行う
doProcess
();
// HTML側に閉じる
処理を行う
// if (mProcessKey != null && mPhaseNo != 0) { //連続作業用のOZView画面非表示
// finishActivity();
// }
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
b5b73a59
...
...
@@ -5463,5 +5463,13 @@ public class ContentViewActivity extends ABVContentViewActivity {
mPageScrollView
.
setZoomingFlag
(
false
);
}
}
/**
* OZ画面閉じた後、タスクアイコンの再描画
*/
public
void
reloadPdfTaskIcon
(
String
taskKey
)
{
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
}
}
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