|
|
@ -136,17 +136,23 @@ namespace BBWY.Server.Model.Db |
|
|
|
[Column(DbType = "decimal(20,2)")] |
|
|
|
public decimal SingleConsumableAmount { get; set; } = 0.00M; |
|
|
|
|
|
|
|
///// <summary>
|
|
|
|
///// 单件仓储费
|
|
|
|
///// </summary>
|
|
|
|
//[Column(DbType = "decimal(20,2)")]
|
|
|
|
//public decimal SingleStorageAmount { get; set; } = 0.00M;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 单件仓储费
|
|
|
|
/// 单件销售运费(不参与均价计算)
|
|
|
|
/// </summary>
|
|
|
|
[Column(DbType = "decimal(20,2)")] |
|
|
|
public decimal SingleStorageAmount { get; set; } = 0.00M; |
|
|
|
public decimal SingleDeliveryFreight { get; set; } = 0.00M; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 单件销售运费(不参与均价计算)
|
|
|
|
/// 包装人工单价
|
|
|
|
/// </summary>
|
|
|
|
[Column(DbType = "decimal(20,2)")] |
|
|
|
public decimal SingleDeliveryFreight { get; set; } = 0.00M; |
|
|
|
public decimal SinglePackagingLaborAmount { get; set; } = 0.00M; |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -157,7 +163,7 @@ namespace BBWY.Server.Model.Db |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return SingleSkuAmount + SingleFreight + SingleFirstFreight + SingleInStorageAmount + SingleOutStorageAmount + SingleConsumableAmount + SingleStorageAmount; |
|
|
|
return SingleSkuAmount + SingleFreight + SingleFirstFreight + SingleInStorageAmount + SingleOutStorageAmount + SingleConsumableAmount + SinglePackagingLaborAmount; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|