Commit de7570c0 authored by xukaiqiang's avatar xukaiqiang

bug

parent fb261048
......@@ -847,10 +847,10 @@ public class RiskSourceServiceImpl implements IRiskSourceService {
List<Long> successIds = Lists.newArrayList();
fmeaPointInputitems.forEach(fmeaPointInputitem -> {
CheckInputItemRo checkInputItemRo = map.get(fmeaPointInputitem.getInputItemId());
if (checkInputItemRo.getStatus().equals(2)) {
if (checkInputItemRo.getStatus().equals("2")) {
failIds.add(fmeaPointInputitem.getId());
fmeaIds.add(fmeaPointInputitem.getFmeaId());
} else if (checkInputItemRo.getStatus().equals(1)) {
} else if (checkInputItemRo.getStatus().equals("1")) {
successIds.add(fmeaPointInputitem.getId());
fmeaIds.add(fmeaPointInputitem.getFmeaId());
}
......
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