|
|
@@ -39,6 +39,7 @@ public class InquiryDetail {
|
|
|
private Date id_todate;
|
|
|
private Double id_minbuyqty;
|
|
|
private Double id_minqty;
|
|
|
+ private Short id_custlqp;
|
|
|
private List<InquiryDetailDet> dets;
|
|
|
|
|
|
public Long getB2b_id_id() {
|
|
|
@@ -177,6 +178,14 @@ public class InquiryDetail {
|
|
|
this.id_minqty = id_minqty;
|
|
|
}
|
|
|
|
|
|
+ public Short getId_custlqp() {
|
|
|
+ return id_custlqp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId_custlqp(Short id_custlqp) {
|
|
|
+ this.id_custlqp = id_custlqp;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 转为平台的采购询价明细
|
|
|
*
|
|
|
@@ -220,6 +229,7 @@ public class InquiryDetail {
|
|
|
this.id_todate = item.getVendToDate();
|
|
|
this.id_id = item.getSourceId();
|
|
|
this.id_detno = item.getNumber();
|
|
|
+ this.id_custlqp = item.getCustLap();
|
|
|
if (!CollectionUtils.isEmpty(item.getReplies())) {
|
|
|
dets = new ArrayList<InquiryDetailDet>();
|
|
|
for (PurchaseInquiryReply reply : item.getReplies()) {
|