|
@@ -41,6 +41,7 @@ public class QuotationDown {
|
|
|
private String qu_environment;
|
|
private String qu_environment;
|
|
|
private String qu_brand;//物料品牌
|
|
private String qu_brand;//物料品牌
|
|
|
private String qu_prodcode;//供应商物料编号
|
|
private String qu_prodcode;//供应商物料编号
|
|
|
|
|
+ private Long qu_leadtime;//供应商交货周期
|
|
|
private List<RemoteFile> files;
|
|
private List<RemoteFile> files;
|
|
|
private List<QuotationDownDetail> details;
|
|
private List<QuotationDownDetail> details;
|
|
|
|
|
|
|
@@ -252,6 +253,14 @@ public class QuotationDown {
|
|
|
this.qu_prodcode = qu_prodcode;
|
|
this.qu_prodcode = qu_prodcode;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public Long getQu_leadtime() {
|
|
|
|
|
+ return qu_leadtime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setQu_leadtime(Long qu_leadtime) {
|
|
|
|
|
+ this.qu_leadtime = qu_leadtime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public QuotationDown() {
|
|
public QuotationDown() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -280,6 +289,9 @@ public class QuotationDown {
|
|
|
this.qu_taxrate = item.getTaxrate();
|
|
this.qu_taxrate = item.getTaxrate();
|
|
|
this.qu_recorddate = item.getInquiry().getDate();
|
|
this.qu_recorddate = item.getInquiry().getDate();
|
|
|
this.qu_remark = item.getRemark();
|
|
this.qu_remark = item.getRemark();
|
|
|
|
|
+ this.qu_brand = item.getBrand();
|
|
|
|
|
+ this.qu_prodcode = item.getVendorprodcode();
|
|
|
|
|
+ this.qu_leadtime = item.getLeadtime();
|
|
|
this.qu_environment = item.getInquiry().getEnvironment();
|
|
this.qu_environment = item.getInquiry().getEnvironment();
|
|
|
this.qu_todate = item.getVendToDate();
|
|
this.qu_todate = item.getVendToDate();
|
|
|
this.qu_custlap = item.getCustLap();
|
|
this.qu_custlap = item.getCustLap();
|