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