Commit 67ac8a6e79ae9a3e327a4ade94e217df5dff138a
1 parent
0d76655f
1.
Showing
1 changed file
with
1 additions
and
4 deletions
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| ... | ... | @@ -1544,10 +1544,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 1544 | 1544 | if (StringUtils.isNotBlank(map.get("repairTypes"))) { |
| 1545 | 1545 | Map<String, Object> param = new HashMap<String, Object>(); |
| 1546 | 1546 | param.putAll(map); |
| 1547 | - Map<String, Object> rrs = repairReport(param, false); | |
| 1548 | - if (ResponseCode.ERROR.equals(rrs.get("status"))) { | |
| 1549 | - return rrs; | |
| 1550 | - } | |
| 1547 | + rs = repairReport(param, false); | |
| 1551 | 1548 | } |
| 1552 | 1549 | |
| 1553 | 1550 | Long id = Long.parseLong(map.get("id")); | ... | ... |