Browse Source

feat: 드론원스톱 신청목록 reviewedType null일 경우 WAIT(W) 처리

pull/19/head
지대한 2 months ago
parent
commit
fa295953db
  1. 3
      pav-server/src/main/java/com/palnet/biz/api/bas/dos/service/BasDosService.java

3
pav-server/src/main/java/com/palnet/biz/api/bas/dos/service/BasDosService.java

@ -14,6 +14,7 @@ import com.palnet.biz.api.external.service.DronOneStopService;
import com.palnet.biz.jpa.entity.DosFltPlanArea;
import com.palnet.biz.jpa.entity.DosFltPlanBas;
import com.palnet.biz.jpa.entity.DosFltPlanResult;
import com.palnet.biz.jpa.entity.type.ReviewedType;
import com.palnet.biz.jpa.repository.dos.*;
import com.palnet.comn.code.ErrorCode;
import com.palnet.comn.exception.CustomException;
@ -207,7 +208,7 @@ public class BasDosService {
.dtl(area.getDtl())
.era(area.getEra())
.rm(area.getRm())
.reviewedType(area.getReviewedType())
.reviewedType(area.getReviewedType() != null ? area.getReviewedType() : ReviewedType.WAIT)
.reqRadius(area.getReqRadius())
.allowRadius(area.getAllowRadius())
.limitZoneCd(area.getLimitZone())

Loading…
Cancel
Save