Commit 18fe96cb by Takatoshi Miura

FCMキー取得改善のコミット漏れ

parent be3450fc
......@@ -20,7 +20,7 @@ public class FcmManager {
/**
* FcmTokenを返す。ただし、PushMessageの利用なしの場合は、noneIdを返す。
* @param context Context
* @return String
* @param resultCallback 結果値を返す関数
*/
public static void getFcmToken(Context context, final Callback resultCallback) {
if (context.getResources().getInteger(R.integer.push_message) == 1) {
......
......@@ -1409,6 +1409,19 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// 画面遷移処理
closeCurrentScreen(mReportType);
}
//サーバ通信中にメモリ上のホットスポット情報が更新されない問題で、サーバ通信後に更新する処理追加
if(isOperationPdf) {
switch (mCmd) {
case ABookKeys.CMD_INSERT_TASK_REPORT: // 作業報告の登録
case ABookKeys.CMD_UPDATE_TASK_REPORT: // 作業報告の更新
case ABookKeys.CMD_DELETE_TASK_REPORT: // 作業報告の削除
case ABookKeys.CMD_LOCAL_SAVE_TASK_REPORT: // 一時保存
case ABookKeys.CMD_DELETE_PROCESS:
getTaskHotspotJSON();
break;
}
}
return null;
}
};
......@@ -1993,4 +2006,9 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
alcoholCheckerUtil = null;
}
}
/**
* ContentViewActivity子クラスで実行
*/
protected void getTaskHotspotJSON() {}
}
\ No newline at end of file
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