Commit 41ef5acf by onuma

#45596 定期点検「送信」ボタンを押す後作業リスト画面に戻らないこと

parent 4e8470d2
......@@ -1015,7 +1015,11 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
closeProgressPopup();
syncOperation(mOperationId, mReportType, false);
try {
mOperationLogic.createJsonForOperationContent(mOperationId, mContentPath, false);
boolean isRoutineTaskReport = false;
if (Constant.ReportType.RoutineTask == mOperationLogic.getOperation(mOperationId).reportType) {
isRoutineTaskReport = true;
}
mOperationLogic.createJsonForOperationContent(mOperationId, mContentPath, isRoutineTaskReport);
} catch (IOException e) {
}
......
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