|
@@ -29,16 +29,24 @@ public class PchOdrInfoResponse {
|
29
|
29
|
@ApiModelProperty(value = "공급사아이디") private String spplyId;
|
30
|
30
|
@ApiModelProperty(value = "공급사명") private String spplyNm;
|
31
|
31
|
@ApiModelProperty(value = "발주일자") private String podrDt;
|
32
|
|
- @ApiModelProperty(value = "납품창고") private String whsDvsnNm;
|
33
|
|
- @ApiModelProperty(value = "출고창고") private String shmtWhsDvsnNm;
|
|
32
|
+ @ApiModelProperty(value = "납품창고") private String whsNm;
|
|
33
|
+ @ApiModelProperty(value = "납품창고코드") private String whsId;
|
|
34
|
+ @ApiModelProperty(value = "납품창고Location") private String location;
|
|
35
|
+ @ApiModelProperty(value = "출고창고") private String shmtWhsNm;
|
|
36
|
+ @ApiModelProperty(value = "출고창고코드") private String shmtWhsId;
|
|
37
|
+ @ApiModelProperty(value = "출고창고코드") private String shmtLocation;
|
34
|
38
|
@ApiModelProperty(value = "발주합계금액") private Long podrTotalAmt;
|
|
39
|
+ @ApiModelProperty(value = "창고구분") private String whsDvsn;
|
|
40
|
+ @ApiModelProperty(value = "창고구분명") private String whsDvsnNm;
|
35
|
41
|
@ApiModelProperty(value = "발주품목수량") private Integer podrItemQty;
|
36
|
42
|
@ApiModelProperty(value = "발주담당자명") private String podrMgrNm;
|
37
|
43
|
@ApiModelProperty(value = "발주담당자전화번호") private String podrMgrTelNo;
|
38
|
44
|
@ApiModelProperty(value = "배송구분명") private String dlvDvsnNm;
|
|
45
|
+ @ApiModelProperty(value = "배송구분명") private String dlvDvsn;
|
39
|
46
|
@ApiModelProperty(value = "납품요청일") private String dlvReqDt;
|
40
|
47
|
@ApiModelProperty(value = "매장아이디") private String storeId;
|
41
|
48
|
|
|
49
|
+
|
42
|
50
|
@ApiModelProperty(value = "구매발주 품목 정보")
|
43
|
51
|
private List<PchOdrInfoResponse.PchOrdPoDtlInfo> pchOdrDtlList;
|
44
|
52
|
|
|
@@ -53,13 +61,20 @@ public class PchOdrInfoResponse {
|
53
|
61
|
.spplyId(entity.getSpplyId() == null ? "" : entity.getSpplyId())
|
54
|
62
|
.spplyNm(entity.getSpplyNm() == null ? "" : entity.getSpplyNm())
|
55
|
63
|
.podrDt(entity.getPodrDt() == null ? "" : entity.getPodrDt())
|
56
|
|
- .whsDvsnNm(entity.getWhsDvsnNm() == null ? "" : entity.getWhsDvsnNm() + "-" + entity.getLocationNm())
|
57
|
|
- .shmtWhsDvsnNm(entity.getShmtWhsNm() == null ? "" : entity.getShmtWhsNm() + "-" + entity.getShmtLocationNm())
|
|
64
|
+ .whsId(entity.getWhsId() == null ? "" : entity.getWhsId())
|
|
65
|
+ .location(entity.getLocation() == null ? "" : entity.getLocation())
|
|
66
|
+ .whsNm(entity.getWhsNm() == null ? "" : entity.getWhsNm() + entity.getLocationNm())
|
|
67
|
+ .shmtWhsId(entity.getShmtWhsId() == null ? "" : entity.getShmtWhsId())
|
|
68
|
+ .shmtLocation(entity.getShmtLocation() == null ? "" : entity.getShmtLocation())
|
|
69
|
+ .shmtWhsNm(entity.getShmtWhsNm() == null ? "" : entity.getShmtWhsNm() + "-" + entity.getShmtLocationNm())
|
|
70
|
+ .whsDvsn(entity.getWhsDvsn() == null ? "" : entity.getWhsDvsn())
|
|
71
|
+ .whsDvsnNm(entity.getWhsDvsnNm() == null? "" : entity.getWhsDvsnNm())
|
58
|
72
|
.podrTotalAmt(entity.getPodrTotalAmt() == null ? 0 : entity.getPodrTotalAmt())
|
59
|
73
|
.podrItemQty(entity.getPodrItemQty() == null ? 0 : entity.getPodrItemQty())
|
60
|
74
|
.podrMgrNm(entity.getPodrMgrNm() == null ? "" : entity.getPodrMgrNm())
|
61
|
75
|
.podrMgrTelNo(entity.getPodrMgrTelNo() == null ? "" : entity.getPodrMgrTelNo())
|
62
|
76
|
.dlvDvsnNm(entity.getDlvDvsnNm() == null ? "" : entity.getDlvDvsnNm())
|
|
77
|
+ .dlvDvsn(entity.getDlvDvsn() == null ? "" : entity.getDlvDvsn())
|
63
|
78
|
.dlvReqDt(entity.getDlvReqDt() == null ? "" : entity.getDlvReqDt())
|
64
|
79
|
.storeId(entity.getStoreId() == null ? "" : entity.getStoreId())
|
65
|
80
|
.pchOdrDtlList(dtlEntityList.stream()
|