Browse Source

客户端修改实收展示规则

AddValidOverTime
shanji 2 years ago
parent
commit
10b05146aa
  1. 2
      BBWY.Client/GlobalContext.cs
  2. 9
      BBWY.Client/Models/Order/Order.cs

2
BBWY.Client/GlobalContext.cs

@ -13,7 +13,7 @@ namespace BBWY.Client
{
ShopServiceGroupList = new List<string>();
ShopServiceGroupLowerList = new List<string>();
ClientVersion = "10203";
ClientVersion = "10204";
}

9
BBWY.Client/Models/Order/Order.cs

@ -85,7 +85,14 @@ namespace BBWY.Client.Models
/// <summary>
/// 实收金额
/// </summary>
public decimal ActualAmount { get { return OrderSellerPrice + FreightPrice; } }
public decimal ActualAmount
{
get
{
//return OrderSellerPrice + FreightPrice;
return OrderPayment + PreferentialAmount;
}
}
/// <summary>
/// 商家优惠金额

Loading…
Cancel
Save