Commit 1fe90adb by Kim Jinsung

自動同期OFF/IO帳票サービス・オプションがONの場合、

報告追加・更新、削除してから作業一覧に戻った場合、カテゴリ作業同期されない問題対応
報告画面で同期を行っているため、ホーム画面で同期処理を行わない
parent 5b2ea6f4
......@@ -590,7 +590,8 @@ public class OperationListActivity extends OperationActivity {
@Override
public void run() {
Logger.d(TAG, "onResume Sync operationId : " + operationId);
if (operationDto != null && operationDto.needSyncFlg) {
//報告画面からすでに同期処理を行っているため、needSyncFlgチェックは除外
if (operationDto != null) {
// 同期処理後、直列処理で新着更新を行う。
singleSyncOperation(operationId, operationDto.reportType);
......
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