Commit 0de8d451 by Jeong Gilmo

#32861 作業情報追加(Android)

- CMSと連携の修正
  画面遷移修正
parent 01537e73
...@@ -1301,10 +1301,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity { ...@@ -1301,10 +1301,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
public void goListScreen() { public void goListScreen() {
putUserPref(AppDefType.UserPrefKey.SYNC_TARGET_OPERATION_ID, mOperationId); // 作業IDの設定 putUserPref(AppDefType.UserPrefKey.SYNC_TARGET_OPERATION_ID, mOperationId); // 作業IDの設定
if (ActivityHandlingHelper.getInstance().searchOzdActivityStack()) { // OZD画面で画面遷移処理 if (ActivityHandlingHelper.getInstance().searchOzdActivityStack()) { // OZD画面で画面遷移処理
if (!mAddReport) { if (mAddReport) {
goToMain(); // 一覧画面に遷移
} else {
ActivityHandlingHelper.getInstance().selectedOzdActivityClose(); // 開いてる画面を閉じる ActivityHandlingHelper.getInstance().selectedOzdActivityClose(); // 開いてる画面を閉じる
} else {
goToMain(); // 一覧画面に遷移
}
} else { // OZD画面以外の場合処理
if (!mAddReport) { // 作業追加なし
finishActivity();
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment