|
|
@ -52,6 +52,9 @@ namespace BBWY.Client.ViewModels |
|
|
|
private string searchServiceId; |
|
|
|
private long waitPurchaseOrderCount; |
|
|
|
private long exceptionOrderCount; |
|
|
|
private long waitOutStoreCount; |
|
|
|
private long afterSaleOrderUnhandleCount; |
|
|
|
|
|
|
|
private long? queryShopId; |
|
|
|
private string querySDOperator; |
|
|
|
private bool isSDGroup; |
|
|
@ -144,12 +147,16 @@ namespace BBWY.Client.ViewModels |
|
|
|
|
|
|
|
public long WaitPurchaseOrderCount { get => waitPurchaseOrderCount; set { Set(ref waitPurchaseOrderCount, value); } } |
|
|
|
public long ExceptionOrderCount { get => exceptionOrderCount; set { Set(ref exceptionOrderCount, value); } } |
|
|
|
public long WaitOutStoreCount { get => waitOutStoreCount; set { Set(ref waitOutStoreCount, value); } } |
|
|
|
public long AfterSaleOrderUnhandleCount { get => afterSaleOrderUnhandleCount; set { Set(ref afterSaleOrderUnhandleCount, value); } } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 是否为刷单组
|
|
|
|
/// </summary>
|
|
|
|
public bool IsSDGroup { get => isSDGroup; set { Set(ref isSDGroup, value); } } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public OrderListViewModel(OrderService orderService, StatisticsService statisticsService, AfterOrderService afterOrderService, GlobalContext globalContext, ChoosePurchaseSchemeViewModel choosePurchaseSchemeViewModel) |
|
|
|
{ |
|
|
|
IsSDGroup = globalContext.User.TeamName == "刷单组"; |
|
|
@ -486,6 +493,8 @@ namespace BBWY.Client.ViewModels |
|
|
|
return; |
|
|
|
WaitPurchaseOrderCount = response.Data.WaitPurchaseCount; |
|
|
|
ExceptionOrderCount = response.Data.ExceptionCount; |
|
|
|
WaitOutStoreCount = response.Data.WaitOutStoreCount; |
|
|
|
AfterSaleOrderUnhandleCount = response.Data.AfterSaleOrderUnhandleCount; |
|
|
|
} |
|
|
|
|
|
|
|
private void DecodeConsignee(Order order) |
|
|
|