|
|
@ -50,14 +50,12 @@ public class BsSgcJsjdBuiRectificationService extends BaseService<BsSgcJsjdBuiRe |
|
|
|
String rectificationSituation = rectificationDto.getRectificationSituation(); |
|
|
|
if (rectificationSituation != null) { |
|
|
|
String[] split = rectificationSituation.split(","); |
|
|
|
rectificationDto.setIsFinish("1"); |
|
|
|
for (String s : split) { |
|
|
|
if (s.equals("0")) { |
|
|
|
if (s.equals("未完成")) { |
|
|
|
rectificationDto.setIsFinish("0"); |
|
|
|
} |
|
|
|
} |
|
|
|
if (rectificationDto.getRectificationSituation() != "0") { |
|
|
|
rectificationDto.setIsFinish("1"); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
Page<RectificationDto> rectificationDtoPage = new Page<>(); |
|
|
|