|
@@ -98,47 +98,6 @@ public class NewOrderProduct {
|
|
|
private Integer frequency; //订单量
|
|
|
private Integer totalNum; //销售量
|
|
|
|
|
|
- public Integer getFrequency() {
|
|
|
- return frequency;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFrequency(Integer frequency) {
|
|
|
- this.frequency = frequency;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTotalNum() {
|
|
|
- return totalNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTotalNum(Integer totalNum) {
|
|
|
- this.totalNum = totalNum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBuyer() {
|
|
|
- return buyer;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBuyer(String buyer) {
|
|
|
- this.buyer = buyer;
|
|
|
- }
|
|
|
-
|
|
|
- public String getConsignee() {
|
|
|
- return consignee;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConsignee(String consignee) {
|
|
|
- this.consignee = consignee;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public Double getShouldPayTotalTax() {
|
|
|
- return shouldPayTotalTax;
|
|
|
- }
|
|
|
-
|
|
|
- public void setShouldPayTotalTax(Double shouldPayTotalTax) {
|
|
|
- this.shouldPayTotalTax = shouldPayTotalTax;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getOrderProductID() {
|
|
|
return orderProductID;
|
|
|
}
|
|
@@ -171,6 +130,14 @@ public class NewOrderProduct {
|
|
|
this.shopID = shopID;
|
|
|
}
|
|
|
|
|
|
+ public String getLedgerNo() {
|
|
|
+ return ledgerNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLedgerNo(String ledgerNo) {
|
|
|
+ this.ledgerNo = ledgerNo;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getProductID() {
|
|
|
return productID;
|
|
|
}
|
|
@@ -243,6 +210,22 @@ public class NewOrderProduct {
|
|
|
this.price = price;
|
|
|
}
|
|
|
|
|
|
+ public Double getShopProductAmount() {
|
|
|
+ return shopProductAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShopProductAmount(Double shopProductAmount) {
|
|
|
+ this.shopProductAmount = shopProductAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getNormalPrice() {
|
|
|
+ return normalPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNormalPrice(Double normalPrice) {
|
|
|
+ this.normalPrice = normalPrice;
|
|
|
+ }
|
|
|
+
|
|
|
public Double getTotalAmount() {
|
|
|
return totalAmount;
|
|
|
}
|
|
@@ -291,6 +274,14 @@ public class NewOrderProduct {
|
|
|
this.totalAddedValueTax = totalAddedValueTax;
|
|
|
}
|
|
|
|
|
|
+ public Double getShouldPayTotalTax() {
|
|
|
+ return shouldPayTotalTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShouldPayTotalTax(Double shouldPayTotalTax) {
|
|
|
+ this.shouldPayTotalTax = shouldPayTotalTax;
|
|
|
+ }
|
|
|
+
|
|
|
public Double getShopFee() {
|
|
|
return shopFee;
|
|
|
}
|
|
@@ -355,12 +346,20 @@ public class NewOrderProduct {
|
|
|
this.commentFlag = commentFlag;
|
|
|
}
|
|
|
|
|
|
- public Double getNormalPrice() {
|
|
|
- return normalPrice;
|
|
|
+ public Double getPrice0() {
|
|
|
+ return price0;
|
|
|
}
|
|
|
|
|
|
- public void setNormalPrice(Double normalPrice) {
|
|
|
- this.normalPrice = normalPrice;
|
|
|
+ public void setPrice0(Double price0) {
|
|
|
+ this.price0 = price0;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPrice1() {
|
|
|
+ return price1;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrice1(Double price1) {
|
|
|
+ this.price1 = price1;
|
|
|
}
|
|
|
|
|
|
public Double getTotalFee() {
|
|
@@ -491,20 +490,20 @@ public class NewOrderProduct {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
- public Double getPrice0() {
|
|
|
- return price0;
|
|
|
+ public String getAliasName() {
|
|
|
+ return aliasName;
|
|
|
}
|
|
|
|
|
|
- public void setPrice0(Double price0) {
|
|
|
- this.price0 = price0;
|
|
|
+ public void setAliasName(String aliasName) {
|
|
|
+ this.aliasName = aliasName;
|
|
|
}
|
|
|
|
|
|
- public Double getPrice1() {
|
|
|
- return price1;
|
|
|
+ public String getUnit() {
|
|
|
+ return unit;
|
|
|
}
|
|
|
|
|
|
- public void setPrice1(Double price1) {
|
|
|
- this.price1 = price1;
|
|
|
+ public void setUnit(String unit) {
|
|
|
+ this.unit = unit;
|
|
|
}
|
|
|
|
|
|
public String getPayStatus() {
|
|
@@ -515,14 +514,6 @@ public class NewOrderProduct {
|
|
|
this.payStatus = payStatus;
|
|
|
}
|
|
|
|
|
|
- public Double getActPreferential() {
|
|
|
- return actPreferential;
|
|
|
- }
|
|
|
-
|
|
|
- public void setActPreferential(Double actPreferential) {
|
|
|
- this.actPreferential = actPreferential;
|
|
|
- }
|
|
|
-
|
|
|
public Double getPreferential() {
|
|
|
return preferential;
|
|
|
}
|
|
@@ -531,48 +522,20 @@ public class NewOrderProduct {
|
|
|
this.preferential = preferential;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public String getImage() {
|
|
|
- return AppUtils.getImageURL("product", image, 0, "");
|
|
|
- }
|
|
|
-
|
|
|
- public void setImage(String image) {
|
|
|
- this.image = image;
|
|
|
- }
|
|
|
-
|
|
|
- @Transient
|
|
|
- public Integer getDeliveryNum() {
|
|
|
- return deliveryNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeliveryNum(Integer deliveryNum) {
|
|
|
- this.deliveryNum = deliveryNum;
|
|
|
- }
|
|
|
-
|
|
|
- @Transient
|
|
|
- public Integer getOutStoreTimes() {
|
|
|
- return outStoreTimes;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOutStoreTimes(Integer outStoreTimes) {
|
|
|
- this.outStoreTimes = outStoreTimes;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getCostPrice() {
|
|
|
- return costPrice;
|
|
|
+ public Double getActPreferential() {
|
|
|
+ return actPreferential;
|
|
|
}
|
|
|
|
|
|
- public void setCostPrice(Double costPrice) {
|
|
|
- this.costPrice = costPrice;
|
|
|
+ public void setActPreferential(Double actPreferential) {
|
|
|
+ this.actPreferential = actPreferential;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public Integer getStock() {
|
|
|
- return stock;
|
|
|
+ public String getImage() {
|
|
|
+ return image;
|
|
|
}
|
|
|
|
|
|
- public void setStock(Integer stock) {
|
|
|
- this.stock = stock;
|
|
|
+ public void setImage(String image) {
|
|
|
+ this.image = image;
|
|
|
}
|
|
|
|
|
|
public Double getDiscountFee() {
|
|
@@ -583,94 +546,92 @@ public class NewOrderProduct {
|
|
|
this.discountFee = discountFee;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public Integer getStatus() {
|
|
|
- return status;
|
|
|
+ public String getProductUnit() {
|
|
|
+ return productUnit;
|
|
|
}
|
|
|
|
|
|
- public void setStatus(Integer status) {
|
|
|
- this.status = status;
|
|
|
+ public void setProductUnit(String productUnit) {
|
|
|
+ this.productUnit = productUnit;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public String getLogisticsBatchID() {
|
|
|
- return logisticsBatchID;
|
|
|
+ public String getProductImage() {
|
|
|
+ return productImage;
|
|
|
}
|
|
|
|
|
|
- public void setLogisticsBatchID(String logisticsBatchID) {
|
|
|
- this.logisticsBatchID = logisticsBatchID;
|
|
|
+ public void setProductImage(String productImage) {
|
|
|
+ this.productImage = productImage;
|
|
|
}
|
|
|
|
|
|
- /*public List<NewCmFinanceReceipts> getNewCmFinanceReceiptsList() {
|
|
|
- return newCmFinanceReceiptsList;
|
|
|
+ public String getShopFee1() {
|
|
|
+ return shopFee1;
|
|
|
}
|
|
|
|
|
|
- public void setNewCmFinanceReceiptsList(List<NewCmFinanceReceipts> newCmFinanceReceiptsList) {
|
|
|
- this.newCmFinanceReceiptsList = newCmFinanceReceiptsList;
|
|
|
+ public void setShopFee1(String shopFee1) {
|
|
|
+ this.shopFee1 = shopFee1;
|
|
|
}
|
|
|
|
|
|
- public List<NewCmFinanceCharge> getNewCmFinanceChargeList() {
|
|
|
- return newCmFinanceChargeList;
|
|
|
+ public String getOtherFee1() {
|
|
|
+ return otherFee1;
|
|
|
}
|
|
|
|
|
|
- public void setNewCmFinanceChargeList(List<NewCmFinanceCharge> newCmFinanceChargeList) {
|
|
|
- this.newCmFinanceChargeList = newCmFinanceChargeList;
|
|
|
- }*/
|
|
|
+ public void setOtherFee1(String otherFee1) {
|
|
|
+ this.otherFee1 = otherFee1;
|
|
|
+ }
|
|
|
|
|
|
- public String getLedgerNo() {
|
|
|
- return ledgerNo;
|
|
|
+ public String getCmFee1() {
|
|
|
+ return cmFee1;
|
|
|
}
|
|
|
|
|
|
- public void setLedgerNo(String ledgerNo) {
|
|
|
- this.ledgerNo = ledgerNo;
|
|
|
+ public void setCmFee1(String cmFee1) {
|
|
|
+ this.cmFee1 = cmFee1;
|
|
|
}
|
|
|
|
|
|
- public String getShopFee1() {
|
|
|
- return singleShopFee == null ? "" : singleShopFee.toString();
|
|
|
+ public Integer getDeliveryNum() {
|
|
|
+ return deliveryNum;
|
|
|
}
|
|
|
|
|
|
- public void setShopFee1(String shopFee1) {
|
|
|
- this.shopFee1 = shopFee1;
|
|
|
+ public void setDeliveryNum(Integer deliveryNum) {
|
|
|
+ this.deliveryNum = deliveryNum;
|
|
|
}
|
|
|
|
|
|
- public String getOtherFee1() {
|
|
|
- return singleOtherFee == null ? "" : singleOtherFee.toString();
|
|
|
+ public Integer getOutStoreTimes() {
|
|
|
+ return outStoreTimes;
|
|
|
}
|
|
|
|
|
|
- public void setOtherFee1(String otherFee1) {
|
|
|
- this.otherFee1 = otherFee1;
|
|
|
+ public void setOutStoreTimes(Integer outStoreTimes) {
|
|
|
+ this.outStoreTimes = outStoreTimes;
|
|
|
}
|
|
|
|
|
|
- public String getCmFee1() {
|
|
|
- return singleCmFee == null ? "" : singleCmFee.toString();
|
|
|
+ public Double getCostPrice() {
|
|
|
+ return costPrice;
|
|
|
}
|
|
|
|
|
|
- public void setCmFee1(String cmFee1) {
|
|
|
- this.cmFee1 = cmFee1;
|
|
|
+ public void setCostPrice(Double costPrice) {
|
|
|
+ this.costPrice = costPrice;
|
|
|
}
|
|
|
|
|
|
- public String getUnit() {
|
|
|
- return unit;
|
|
|
+ public Integer getStock() {
|
|
|
+ return stock;
|
|
|
}
|
|
|
|
|
|
- public void setUnit(String unit) {
|
|
|
- this.unit = unit;
|
|
|
+ public void setStock(Integer stock) {
|
|
|
+ this.stock = stock;
|
|
|
}
|
|
|
|
|
|
- public String getProductUnit() {
|
|
|
- return productUnit;
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
- public void setProductUnit(String productUnit) {
|
|
|
- this.productUnit = productUnit;
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
}
|
|
|
|
|
|
- public String getProductImage() {
|
|
|
- return AppUtils.getImageURL("product", productImage, 0, "");
|
|
|
+ public String getLogisticsBatchID() {
|
|
|
+ return logisticsBatchID;
|
|
|
}
|
|
|
|
|
|
- public void setProductImage(String productImage) {
|
|
|
- this.productImage = productImage;
|
|
|
+ public void setLogisticsBatchID(String logisticsBatchID) {
|
|
|
+ this.logisticsBatchID = logisticsBatchID;
|
|
|
}
|
|
|
|
|
|
public String getSplitFlag() {
|
|
@@ -681,7 +642,6 @@ public class NewOrderProduct {
|
|
|
this.splitFlag = splitFlag;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public String getCostCheckFlag() {
|
|
|
return costCheckFlag;
|
|
|
}
|
|
@@ -690,7 +650,6 @@ public class NewOrderProduct {
|
|
|
this.costCheckFlag = costCheckFlag;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public Double getCostProportional() {
|
|
|
return costProportional;
|
|
|
}
|
|
@@ -707,7 +666,30 @@ public class NewOrderProduct {
|
|
|
this.cmProductSnList = cmProductSnList;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
+ public String getConsignee() {
|
|
|
+ return consignee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConsignee(String consignee) {
|
|
|
+ this.consignee = consignee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBuyer() {
|
|
|
+ return buyer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBuyer(String buyer) {
|
|
|
+ this.buyer = buyer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getThisTimePostNum() {
|
|
|
+ return thisTimePostNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setThisTimePostNum(Integer thisTimePostNum) {
|
|
|
+ this.thisTimePostNum = thisTimePostNum;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getReturnedPurchaseProductNum() {
|
|
|
return returnedPurchaseProductNum;
|
|
|
}
|
|
@@ -716,7 +698,6 @@ public class NewOrderProduct {
|
|
|
this.returnedPurchaseProductNum = returnedPurchaseProductNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public Integer getReturningPurchaseProductNum() {
|
|
|
return returningPurchaseProductNum;
|
|
|
}
|
|
@@ -725,7 +706,6 @@ public class NewOrderProduct {
|
|
|
this.returningPurchaseProductNum = returningPurchaseProductNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public Integer getCancelProductNum() {
|
|
|
return cancelProductNum;
|
|
|
}
|
|
@@ -734,16 +714,6 @@ public class NewOrderProduct {
|
|
|
this.cancelProductNum = cancelProductNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public Integer getThisTimePostNum() {
|
|
|
- return thisTimePostNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setThisTimePostNum(Integer thisTimePostNum) {
|
|
|
- this.thisTimePostNum = thisTimePostNum;
|
|
|
- }
|
|
|
-
|
|
|
- @Transient
|
|
|
public Integer getReceivedNum() {
|
|
|
return receivedNum;
|
|
|
}
|
|
@@ -752,7 +722,6 @@ public class NewOrderProduct {
|
|
|
this.receivedNum = receivedNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public Integer getReturningNum() {
|
|
|
return returningNum;
|
|
|
}
|
|
@@ -761,7 +730,6 @@ public class NewOrderProduct {
|
|
|
this.returningNum = returningNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public Integer getReturnedNum() {
|
|
|
return returnedNum;
|
|
|
}
|
|
@@ -770,16 +738,6 @@ public class NewOrderProduct {
|
|
|
this.returnedNum = returnedNum;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
- public String getAliasName() {
|
|
|
- return aliasName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAliasName(String aliasName) {
|
|
|
- this.aliasName = aliasName;
|
|
|
- }
|
|
|
-
|
|
|
- @Transient
|
|
|
public Boolean getFirstReturn() {
|
|
|
return firstReturn;
|
|
|
}
|
|
@@ -788,14 +746,6 @@ public class NewOrderProduct {
|
|
|
this.firstReturn = firstReturn;
|
|
|
}
|
|
|
|
|
|
- public Double getShopProductAmount() {
|
|
|
- return shopProductAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setShopProductAmount(Double shopProductAmount) {
|
|
|
- this.shopProductAmount = shopProductAmount;
|
|
|
- }
|
|
|
-
|
|
|
public Double getNewCostPrice() {
|
|
|
return newCostPrice;
|
|
|
}
|
|
@@ -811,4 +761,20 @@ public class NewOrderProduct {
|
|
|
public void setSingleShouldPayTotalTax(Double singleShouldPayTotalTax) {
|
|
|
this.singleShouldPayTotalTax = singleShouldPayTotalTax;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getFrequency() {
|
|
|
+ return frequency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFrequency(Integer frequency) {
|
|
|
+ this.frequency = frequency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalNum() {
|
|
|
+ return totalNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalNum(Integer totalNum) {
|
|
|
+ this.totalNum = totalNum;
|
|
|
+ }
|
|
|
}
|