|
@@ -17,6 +17,7 @@ import com.its.op.entity.its.vms.TbVmsCtlr;
|
|
|
import com.its.op.global.CodeManager;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
@@ -168,7 +169,7 @@ public class TbIncdOcrrService {
|
|
|
// 현재 진행중인 돌발 정보 조회
|
|
|
// TODO: 20230424, 돌발제목에 "포트홀" 이 들어간 돌발은 화면에 표출하지 않도록 한다.
|
|
|
if (CodeManager.INCD_PRGR_STEP_ISS2.equals(obj.getIncdPrgrStepCd()) &&
|
|
|
- !"포트홀".contains(obj.getIncdTitl())) {
|
|
|
+ !StringUtils.contains(obj.getIncdTitl(), "포트홀")) {
|
|
|
result.add(obj.toDto());
|
|
|
}
|
|
|
});
|