|
|
@@ -80,13 +80,27 @@ public class PurchaseOrderWaitingItem {
|
|
|
*/
|
|
|
@Column(name = "pd_remark")
|
|
|
private String remark;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 送货工厂
|
|
|
*/
|
|
|
@Column(name = "pd_factory")
|
|
|
private String factory;
|
|
|
|
|
|
+ /**
|
|
|
+ * 供应商规格
|
|
|
+ */
|
|
|
+ @Column(name = "pd_vendspec")
|
|
|
+ private String vendspec;
|
|
|
+
|
|
|
+ public String getVendspec() {
|
|
|
+ return vendspec;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVendspec(String vendspec) {
|
|
|
+ this.vendspec = vendspec;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 含税单价
|
|
|
*/
|
|
|
@@ -134,7 +148,7 @@ public class PurchaseOrderWaitingItem {
|
|
|
*/
|
|
|
@Column(name = "pd_end")
|
|
|
private Short end;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 客户已验收数量
|
|
|
*/
|
|
|
@@ -152,7 +166,7 @@ public class PurchaseOrderWaitingItem {
|
|
|
*/
|
|
|
@Transient
|
|
|
private Boolean key;
|
|
|
-
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -322,7 +336,7 @@ public class PurchaseOrderWaitingItem {
|
|
|
public void setKey(Boolean key) {
|
|
|
this.key = key;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getFactory() {
|
|
|
return factory;
|
|
|
}
|
|
|
@@ -338,7 +352,7 @@ public class PurchaseOrderWaitingItem {
|
|
|
acceptQtyNum = acceptQty == null ? 0 : acceptQty;
|
|
|
return qtyNum + returnQtyNum - acceptQtyNum;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getVendorName() {
|
|
|
return SystemSession.getUser().getEnterprise().getEnName();
|
|
|
}
|