|
|
@ -48,7 +48,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
public GlobalContext globalContext { get; set; } |
|
|
|
private bool? includeAfterOrder; |
|
|
|
private bool includeExceptionOrder; |
|
|
|
private decimal currentConditionsTotalProfit; |
|
|
|
//private decimal currentConditionsTotalProfit;
|
|
|
|
private string searchServiceId; |
|
|
|
private long waitPurchaseOrderCount; |
|
|
|
private long exceptionOrderCount; |
|
|
@ -135,7 +135,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
/// <summary>
|
|
|
|
/// 当前条件利润汇总
|
|
|
|
/// </summary>
|
|
|
|
public decimal CurrentConditionsTotalProfit { get => currentConditionsTotalProfit; set { Set(ref currentConditionsTotalProfit, value); } } |
|
|
|
//public decimal CurrentConditionsTotalProfit { get => currentConditionsTotalProfit; set { Set(ref currentConditionsTotalProfit, value); } }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 是否包含异常订单
|
|
|
@ -391,7 +391,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
return; |
|
|
|
} |
|
|
|
OrderCount = response.Data.Count; |
|
|
|
CurrentConditionsTotalProfit = response.Data.CurrentConditionsTotalProfit; |
|
|
|
//CurrentConditionsTotalProfit = response.Data.CurrentConditionsTotalProfit;
|
|
|
|
var orderList = response.Data.Items.Map<IList<Order>>(); |
|
|
|
App.Current.Dispatcher.Invoke(() => |
|
|
|
{ |
|
|
|