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
01537e73
Commit
01537e73
authored
Mar 26, 2019
by
Jeong Gilmo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32861 作業情報追加(Android)
- CMSと連携の修正
parent
0ff22555
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
30 deletions
+33
-30
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+28
-25
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
+2
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+3
-3
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
01537e73
...
...
@@ -674,9 +674,12 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
});
alertDialog
.
show
();
}
else
{
// #32861 start
// 作業終了する時、作業ID設定して作業一覧で使用するメソットを行う。
operationFinish
();
}
putUserPref
(
AppDefType
.
UserPrefKey
.
SYNC_TARGET_OPERATION_ID
,
mOperationId
);
finishActivity
();
// 開いてる画面を閉じる
// #32961 end
}
}
});
operationHomeButton
.
setVisibility
(
View
.
VISIBLE
);
...
...
@@ -764,8 +767,11 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
});
alertDialog
.
show
();
}
else
{
// #32861 start
// 作業終了する時、作業ID設定して作業一覧で使用するメソットを行う。
operationFinish
();
putUserPref
(
AppDefType
.
UserPrefKey
.
SYNC_TARGET_OPERATION_ID
,
mOperationId
);
// 作業IDの設定
finishActivity
();
// 開いてる画面を閉じる
// #32861 end
}
}
...
...
@@ -928,13 +934,18 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// エラーがなしの場合
// 現在画面を閉じる
// その以外の場合コールバック処理のみ行う。
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
ABookKeys
.
CMD_DELETE_TASK_REPORT
,
ABookKeys
.
CMD_CANCEL_TASK_REPORT
)
&&
!
mAddReport
&&
!
isError
)
{
operationFinish
();
}
else
{
if
(!
isError
)
{
// エラーがない場合のみ画面遷移処理を行う。
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
ABookKeys
.
CMD_DELETE_TASK_REPORT
,
ABookKeys
.
CMD_CANCEL_TASK_REPORT
)
&&
!
mAddReport
&&
!
isError
)
{
goListScreen
();
// 画面閉じて画面遷移処理
}
else
{
if
(
isError
)
{
// エラーがある場合コールバック処理をを行う。
afterABookCheckApi
(
mCmd
,
mTaskKey
,
1
,
""
,
null
,
isOperationPdf
());
}
else
{
// エラーがない場合コールバックと画面遷移処理を行う。
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
,
isOperationPdf
());
doneProcess
();
goListScreen
();
// 画面閉じて画面遷移処理
}
}
// #32861 作業情報追加 end
...
...
@@ -1286,23 +1297,15 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
}
}
// 押したボタンによってHTML側の処理が終わった後の処理を行う
public
void
doneProcess
()
{
// 作業追加区分ありの場合
if
(
ActivityHandlingHelper
.
getInstance
().
searchActivityStack
()
&&
mAddReport
)
{
ActivityHandlingHelper
.
getInstance
().
selectedActivityClose
();
// 現在画面を閉じる
}
else
{
operationFinish
();
// 現在画面を閉じる
}
}
// 作業終了する時、作業ID設定して作業一覧で使用するメソット
public
void
operationFinish
()
{
putUserPref
(
AppDefType
.
UserPrefKey
.
SYNC_TARGET_OPERATION_ID
,
mOperationId
);
if
(
ActivityHandlingHelper
.
getInstance
().
searchActivityStack
())
{
goToMain
();
// 一覧画面に遷移
}
else
{
finishActivity
();
// 開いてる画面を閉じる
public
void
goListScreen
()
{
putUserPref
(
AppDefType
.
UserPrefKey
.
SYNC_TARGET_OPERATION_ID
,
mOperationId
);
// 作業IDの設定
if
(
ActivityHandlingHelper
.
getInstance
().
searchOzdActivityStack
())
{
// OZD画面で画面遷移処理
if
(!
mAddReport
)
{
goToMain
();
// 一覧画面に遷移
}
else
{
ActivityHandlingHelper
.
getInstance
().
selectedOzdActivityClose
();
// 開いてる画面を閉じる
}
}
}
// #32861 作業情報追加 end
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
View file @
01537e73
...
...
@@ -77,8 +77,8 @@ public class ABookCheckWebViewHelper extends ABookHelper {
// #32861 start
// ActivityであるClassからCheckOZDViewActivityを確認してContextの値を変更する。
if
(
ActivityHandlingHelper
.
getInstance
().
searchActivityStack
())
{
context
=
(
ABVContentViewActivity
)
ActivityHandlingHelper
.
getInstance
().
selectedAtivityContext
();
if
(
ActivityHandlingHelper
.
getInstance
().
search
Ozd
ActivityStack
())
{
context
=
(
ABVContentViewActivity
)
ActivityHandlingHelper
.
getInstance
().
selected
Ozd
AtivityContext
();
}
// #32861 end
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
01537e73
...
...
@@ -1609,7 +1609,7 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
}
// ActivityであるClassからCheckOZDViewActivityを確認する処理
public
boolean
searchActivityStack
()
{
public
boolean
search
Ozd
ActivityStack
()
{
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
if
(
activity
instanceof
CheckOZDViewActivity
)
{
...
...
@@ -1621,7 +1621,7 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
}
// ActivityであるClassからCheckOZDViewActivityを確認して画面を閉じる処理
public
void
selectedActivityClose
()
{
public
void
selected
Ozd
ActivityClose
()
{
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
if
(
activity
instanceof
CheckOZDViewActivity
)
{
...
...
@@ -1632,7 +1632,7 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
}
// ActivityであるClassからCheckOZDViewActivityを確認してContextの値を変更する。
public
Context
selectedAtivityContext
()
{
public
Context
selected
Ozd
AtivityContext
()
{
Context
context
=
null
;
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
...
...
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