dev #515
@ -3237,10 +3237,12 @@ public class EstimateService {
|
|||||||
throw new QcastException(ErrorCode.NOT_FOUND, message.getMessage("common.message.no.data"));
|
throw new QcastException(ErrorCode.NOT_FOUND, message.getMessage("common.message.no.data"));
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// 지역코드 셋팅
|
// 물건정보 셋팅
|
||||||
response.setObjectNo(estimateRequest.getObjectNo());
|
response.setObjectNo(estimateRequest.getObjectNo());
|
||||||
response.setPlanNo(estimateRequest.getPlanNo());
|
response.setPlanNo(estimateRequest.getPlanNo());
|
||||||
|
response.setObjectName(estimateRequest.getObjectName());
|
||||||
response.setAreaId(estimateResponse.getAreaId());
|
response.setAreaId(estimateResponse.getAreaId());
|
||||||
|
response.setConType(estimateResponse.getConType());
|
||||||
|
|
||||||
// 지붕면 정보 목록 조회
|
// 지붕면 정보 목록 조회
|
||||||
List<SimulationRoofResponse> roofList = estimateMapper.selectSimulationEstimateRoofList(estimateRequest);
|
List<SimulationRoofResponse> roofList = estimateMapper.selectSimulationEstimateRoofList(estimateRequest);
|
||||||
|
|||||||
@ -197,6 +197,9 @@ public class EstimateResponse {
|
|||||||
@Schema(description = "지역명")
|
@Schema(description = "지역명")
|
||||||
private String areaName;
|
private String areaName;
|
||||||
|
|
||||||
|
@Schema(description = "계약조건")
|
||||||
|
private String conType;
|
||||||
|
|
||||||
@Schema(description = "물건정보 비고")
|
@Schema(description = "물건정보 비고")
|
||||||
private String objectRemarks;
|
private String objectRemarks;
|
||||||
|
|
||||||
|
|||||||
@ -10,12 +10,18 @@ public class SimulationEstimateResponse {
|
|||||||
@Schema(description = "물건번호")
|
@Schema(description = "물건번호")
|
||||||
private String objectNo;
|
private String objectNo;
|
||||||
|
|
||||||
|
@Schema(description = "안건명")
|
||||||
|
private String objectName;
|
||||||
|
|
||||||
@Schema(description = "플랜번호")
|
@Schema(description = "플랜번호")
|
||||||
private String planNo;
|
private String planNo;
|
||||||
|
|
||||||
@Schema(description = "지역코드")
|
@Schema(description = "지역코드")
|
||||||
private String areaId;
|
private String areaId;
|
||||||
|
|
||||||
|
@Schema(description = "계약조건")
|
||||||
|
private String conType;
|
||||||
|
|
||||||
@Schema(description = "지붕면 정보 목록")
|
@Schema(description = "지붕면 정보 목록")
|
||||||
List<SimulationRoofResponse> roofList;
|
List<SimulationRoofResponse> roofList;
|
||||||
|
|
||||||
|
|||||||
@ -64,6 +64,7 @@
|
|||||||
, B.SALE_STORE_ID AS SAP_SALE_STORE_ID
|
, B.SALE_STORE_ID AS SAP_SALE_STORE_ID
|
||||||
, B.SAP_SALES_STORE_CD
|
, B.SAP_SALES_STORE_CD
|
||||||
, OI.AREA_ID
|
, OI.AREA_ID
|
||||||
|
, OI.CON_TYPE
|
||||||
, ISNULL(OI.COLD_REGION_FLG, '0') AS COLD_REGION_FLG
|
, ISNULL(OI.COLD_REGION_FLG, '0') AS COLD_REGION_FLG
|
||||||
, ISNULL(OI.SALT_AREA_FLG, '0') AS SALT_AREA_FLG
|
, ISNULL(OI.SALT_AREA_FLG, '0') AS SALT_AREA_FLG
|
||||||
, SS.FIRST_AGENT_ID
|
, SS.FIRST_AGENT_ID
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user