提交修改

This commit is contained in:
quyixiao 2020-11-10 11:23:59 +08:00
parent dbd4f38e50
commit 7a58454f58

View File

@ -1139,10 +1139,10 @@ public class ResultRecordServiceImpl extends ServiceImpl<ResultRecordMapper, Res
if(currentResultRecords !=null && currentResultRecords.size() > 0 ){ if(currentResultRecords !=null && currentResultRecords.size() > 0 ){
FlowRecord currentFlowRecord = currentResultRecords.get(0); FlowRecord currentFlowRecord = currentResultRecords.get(0);
int flowProcess = currentFlowRecord.getFlowProcess(); int flowProcess = currentFlowRecord.getFlowProcess();
if(flowProcess < 3 ){ if(flowProcess <= 3 ){
auth.put("showResult",0); auth.put("showResult",0);
} }
if( flowProcess < 4 ){ if( flowProcess <= 4 ){
auth.put("showScore",0); auth.put("showScore",0);
} }