Commit 110a53ca by Kim Jinsung

Merge branch 'contract/sato/1.0.500_son' into 'contract/sato/1.0.500'

fix open operation with operation routine task and routinePeriod = null (needSyncFlg = true)

See merge request !322
parents 6e3ed79e b26dae4a
...@@ -2493,7 +2493,7 @@ public class OperationListActivity extends OperationActivity { ...@@ -2493,7 +2493,7 @@ public class OperationListActivity extends OperationActivity {
if (isSuccess) { if (isSuccess) {
if (mAutoSyncOpenOperationId != null) { if (mAutoSyncOpenOperationId != null) {
OperationDto operationDto = mOperationLogic.getOperation(mAutoSyncOpenOperationId); OperationDto operationDto = mOperationLogic.getOperation(mAutoSyncOpenOperationId);
if (!operationDto.needSyncFlg) { if (operationDto != null && operationDto.contentId != null && operationDto.contentId != 0) {
openReportView(operationDto); openReportView(operationDto);
} }
} }
......
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