Browse Source

B2B采购单下达到供应商的ERP系统,SaleDown字段调整

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@240 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
administrator 11 years ago
parent
commit
703a87b6bc
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/main/java/com/uas/platform/b2b/erp/model/SaleDownDetail.java

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

@@ -12,6 +12,7 @@ public class SaleDownDetail {
 	private String sd_custproddetail;
 	private String sd_custprodspec;
 	private String sd_custprodunit;
+	private Date sd_delivery;
 	private Double sd_replyqty;
 	private Date sd_replydate;
 	private String sd_replydetail;
@@ -70,6 +71,14 @@ public class SaleDownDetail {
 		this.sd_custprodunit = sd_custprodunit;
 	}
 
+	public Date getSd_delivery() {
+		return sd_delivery;
+	}
+
+	public void setSd_delivery(Date sd_delivery) {
+		this.sd_delivery = sd_delivery;
+	}
+
 	public Double getSd_replyqty() {
 		return sd_replyqty;
 	}
@@ -161,6 +170,7 @@ public class SaleDownDetail {
 		this.sd_detno = orderItem.getNumber();
 		this.sd_price = orderItem.getPrice();
 		this.sd_qty = orderItem.getQty();
+		this.sd_delivery = orderItem.getDelivery();
 		this.sd_replydate = orderItem.getReplyDelivery();
 		this.sd_replydetail = orderItem.getReplyRemark();
 		this.sd_replyqty = orderItem.getReplyQty();