Browse Source

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@434 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d

administrator 11 years ago
parent
commit
d63da54708
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/main/java/com/uas/platform/b2b/erp/model/InquiryDetail.java

+ 10 - 0
src/main/java/com/uas/platform/b2b/erp/model/InquiryDetail.java

@@ -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()) {