shanji 3 years ago
parent
commit
84743b90a1
  1. 2
      BBWY.Server.Business/Statistics/StatisticsBusiness.cs

2
BBWY.Server.Business/Statistics/StatisticsBusiness.cs

@ -306,7 +306,7 @@ namespace BBWY.Server.Business
response.WaitOutStoreCount = fsql.Select<Order>().Where(o => o.ShopId == shopId && o.OrderState == Enums.OrderState. && o.StartTime >= dt).Count();
response.AfterSaleOrderUnhandleCount = fsql.Select<AfterSaleOrder>().Where(aso => aso.ShopId == shopId && aso.ProductHealth == null || aso.ProductResult == null && aso.CreateTime >= dt).Count();
response.AfterSaleOrderUnhandleCount = fsql.Select<AfterSaleOrder>().Where(aso => aso.ShopId == shopId && (aso.ProductHealth == null || aso.ProductResult == null) && aso.CreateTime >= dt).Count();
return response;
}

Loading…
Cancel
Save