|
@@ -97,6 +97,12 @@ public class PurchaseReturnItem {
|
|
|
*/
|
|
*/
|
|
|
@Column(name = "pri_prodcode")
|
|
@Column(name = "pri_prodcode")
|
|
|
private String prodCode;
|
|
private String prodCode;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 仓库名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "pri_whname")
|
|
|
|
|
+ private String whname;
|
|
|
|
|
|
|
|
public String getProdCode() {
|
|
public String getProdCode() {
|
|
|
return prodCode;
|
|
return prodCode;
|
|
@@ -193,6 +199,14 @@ public class PurchaseReturnItem {
|
|
|
public void setTaxrate(Double taxrate) {
|
|
public void setTaxrate(Double taxrate) {
|
|
|
this.taxrate = taxrate;
|
|
this.taxrate = taxrate;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public String getWhname() {
|
|
|
|
|
+ return whname;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWhname(String whname) {
|
|
|
|
|
+ this.whname = whname;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
public static List<PurchaseReturn> distinct(List<PurchaseReturnItem> items) {
|
|
public static List<PurchaseReturn> distinct(List<PurchaseReturnItem> items) {
|
|
|
List<PurchaseReturn> list = new ArrayList<PurchaseReturn>();
|
|
List<PurchaseReturn> list = new ArrayList<PurchaseReturn>();
|