fix: 거주자/장애인 심의대상 등록 fix

dev
minuk926 3 years ago
parent c791e76ad1
commit a0a2a5a768

@ -85,7 +85,14 @@ public class IResidentAndDisabledRepositoryImpl implements IResidentAndDisabledR
.where(gnRecallSc.scIngb.eq(cmmCodeS.codeCd), cmmCodeS.codeGrpId.eq("TRAFFIC"),
cmmCodeS.codeLcd.eq("GANGNAM_SIMSA"),
cmmCodeS.codeMcd.eq("RC_INGB")),
"scIngbNm")
"scIngbNm"),
ExpressionUtils.as(
JPAExpressions.select(cmmCodeS.codeNm)
.from(cmmCodeS)
.where(gnRecallSc.scState.eq(cmmCodeS.codeCd), cmmCodeS.codeGrpId.eq("TRAFFIC"),
cmmCodeS.codeLcd.eq("GANGNAM_SIMSA"),
cmmCodeS.codeMcd.eq("SC_STATE")),
"scStateNm")
))
.from(gnRecallSc)
.where(gnRecallSc.scCode.in(scCodeList.getResults()))

Loading…
Cancel
Save