Commit b26dae4a by NGUYEN HOANG SON

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

parent 4411c835
......@@ -2493,7 +2493,7 @@ public class OperationListActivity extends OperationActivity {
if (isSuccess) {
if (mAutoSyncOpenOperationId != null) {
OperationDto operationDto = mOperationLogic.getOperation(mAutoSyncOpenOperationId);
if (!operationDto.needSyncFlg) {
if (operationDto != null && operationDto.contentId != null && operationDto.contentId != 0) {
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