fix: 폐기보고확인 fix

dev
Jonguk. Lim 5 months ago
parent 03b83133ca
commit 661450cf3f

@ -57,7 +57,7 @@ public class BizNimsResponse {
*/
private String prmisnNo;
private boolean isPrdMatch = true;
private boolean isPrdMatch = false;
}
/**

@ -473,7 +473,7 @@ public class NimsApiDto {
*/
@JsonIgnore
public BizNimsResponse.DsuseMgtRes mappingNewDsuseRptInfo(BizNimsResponse.DsuseMgtRes mgtDto) {
mgtDto.setPrdMatch(true);
mgtDto.setPrdMatch(false);
String rptInfoStr = String.join("",
this.bsshCd, // 마약류취급자식별번호
this.hdrDe, // 취급일자
@ -495,6 +495,7 @@ public class NimsApiDto {
// FIXME: 폐기관리와 폐기보고의 상품정보 일치 여부 set - 비교 필드 확정 필요
if (rptInfoStr.equals(mgtInfoStr)) {
mgtDto.setPrdMatch(true);
if (this.listDtl.size() == mgtDto.getDsuseMgtDtls().size()) {
for (DsuseRptInfoDtl rptDtl : this.listDtl) {
for (BizNimsDto.DsuseMgtDtl mgtDtl : mgtDto.getDsuseMgtDtls()) {

Loading…
Cancel
Save