You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
751 B
25 lines
751 B
|
|
|
|
using BBWYB.Server.Model;
|
|
using BBWYB.Server.Model.Db;
|
|
|
|
namespace BBWYB.Server.Business
|
|
{
|
|
public static class OrderStateExtension
|
|
{
|
|
/// <summary>
|
|
/// 计算订单状态
|
|
/// </summary>
|
|
/// <param name="order"></param>
|
|
/// <param name="orderSkuList"></param>
|
|
/// <param name="orderPurchaseInfoList"></param>
|
|
/// <returns></returns>
|
|
public static Enums.OrderState CalculationOrderState(this Order order,
|
|
IList<OrderSku> orderSkuList,
|
|
IList<OrderPurchaseInfo> orderPurchaseInfoList)
|
|
{
|
|
|
|
return Enums.OrderState.Unknow;
|
|
}
|
|
}
|
|
}
|
|
|