Browse Source

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

administrator 11 years ago
parent
commit
c8925f8143

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

@@ -39,7 +39,6 @@ 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() {
@@ -178,14 +177,6 @@ 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;
-	}
-
 	/**
 	 * 转为平台的采购询价明细
 	 * 
@@ -229,7 +220,6 @@ 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()) {

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

@@ -36,6 +36,7 @@ public class QuotationDown {
 	private Date qu_todate;
 	private Double qu_minbuyqty;
 	private Double qu_minqty;
+	private Short qu_custlap;
 	private List<QuotationDownDetail> details;
 
 	public long getB2b_id_id() {
@@ -198,6 +199,14 @@ public class QuotationDown {
 		this.details = details;
 	}
 
+	public Short getQu_custlap() {
+		return qu_custlap;
+	}
+
+	public void setQu_custlap(Short qu_custlap) {
+		this.qu_custlap = qu_custlap;
+	}
+
 	public QuotationDown() {
 	}
 
@@ -226,6 +235,7 @@ public class QuotationDown {
 		this.qu_recorddate = item.getInquiry().getDate();
 		this.qu_remark = item.getRemark();
 		this.qu_todate = item.getVendToDate();
+		this.qu_custlap = item.getCustLap();
 		this.details = new ArrayList<QuotationDownDetail>();
 		if (!CollectionUtils.isEmpty(item.getReplies())) {
 			for (PurchaseInquiryReply reply : item.getReplies()) {