"미납차량 1,2,3차고지 전 검증" 메뉴에서 자료를 일괄 선택하고 저장시

일부 자료에서 오류가 나면 전체 작업을 취소하지 않고 나머지 자료는 처리되도록 수정
main
이범준 9 months ago
parent cc4500162d
commit 5ace1a6d4a

@ -1751,8 +1751,9 @@ public class FineTransServiceImpl implements FineTransService {
@Override
public void updateFinePenalty123Verify(List<FineTransVO> paramList) throws Exception {
try {
for (FineTransVO vo : paramList) {
for (FineTransVO vo : paramList) {
try {
if ("1".equals(vo.getChk())) {
if("0".equals(vo.getVerificateYn()) && "0".equals(vo.getSearchDiv())) {
if(fineTransDao.countFareVerify(vo) == 0) {
@ -1760,14 +1761,15 @@ public class FineTransServiceImpl implements FineTransService {
}
}
}
}
}catch(RuntimeException e) {
logger.info("catch check");
throw e;
} catch(Exception ex) {
logger.info("catch check");
throw ex;
}catch(RuntimeException e) {
logger.info("catch check");
throw e;
} catch(Exception ex) {
logger.info("catch check");
throw ex;
}
}
}
@Override

Loading…
Cancel
Save