Commit 079d208e authored by 吴春's avatar 吴春

提交代码

parent c0a9882a
...@@ -212,5 +212,10 @@ namespace Property.Model.Entity.Mall ...@@ -212,5 +212,10 @@ namespace Property.Model.Entity.Mall
/// 积分赠送 /// 积分赠送
/// </summary> /// </summary>
public int? IntegralGoodsPresent { get; set; } public int? IntegralGoodsPresent { get; set; }
/// <summary>
/// 商品已付成本(商品成本+运费成本)
/// </summary>
public decimal PaidCostMoney { get; set; }
} }
} }
...@@ -387,7 +387,8 @@ namespace Property.Module.Mall ...@@ -387,7 +387,8 @@ namespace Property.Module.Mall
//更新申请单的出库状态 //更新申请单的出库状态
Dictionary<string, object> filesGoods = new Dictionary<string, object>() { Dictionary<string, object> filesGoods = new Dictionary<string, object>() {
{nameof(RB_Goods_OrderDetail.CostFinanceId),frid}, {nameof(RB_Goods_OrderDetail.CostFinanceId),frid},
{ nameof(RB_Goods_OrderDetail.CostMoney),Math.Round((costMoney), 2, MidpointRounding.AwayFromZero)} { nameof(RB_Goods_OrderDetail.CostMoney),Math.Round((costMoney), 2, MidpointRounding.AwayFromZero)},
{ nameof(RB_Goods_OrderDetail.PaidCostMoney),Math.Round((costMoney), 2, MidpointRounding.AwayFromZero)}
}; };
List<WhereHelper> wheresGoods = new List<WhereHelper>() { new WhereHelper() List<WhereHelper> wheresGoods = new List<WhereHelper>() { new WhereHelper()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment