|
@@ -88,6 +88,7 @@ public class NewOrderProduct extends DataEntity<NewOrderProduct> {
|
|
|
// ***************** 虚拟字段
|
|
|
private Integer deliveryNum; // 发货数量
|
|
|
private Integer outStoreTimes; // 发货批次
|
|
|
+ private Double costPriceTax; // 成本价 不含税
|
|
|
private Double costPrice; // 成本价(快照商品成本价格)
|
|
|
private Double organizeCostPrice; // 集团成本价
|
|
|
private Double cmCostPrice; // 采美成本价
|
|
@@ -647,6 +648,14 @@ public class NewOrderProduct extends DataEntity<NewOrderProduct> {
|
|
|
this.outStoreTimes = outStoreTimes;
|
|
|
}
|
|
|
|
|
|
+ public Double getCostPriceTax() {
|
|
|
+ return costPriceTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCostPriceTax(Double costPriceTax) {
|
|
|
+ this.costPriceTax = costPriceTax;
|
|
|
+ }
|
|
|
+
|
|
|
public Double getCostPrice() {
|
|
|
return costPrice;
|
|
|
}
|