|
@ -47,16 +47,16 @@ namespace BBWY.Server.API.Controllers |
|
|
orderSyncBusiness.ManualSyncOrder(shopId, orderIds, null, null); |
|
|
orderSyncBusiness.ManualSyncOrder(shopId, orderIds, null, null); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
///// <summary>
|
|
|
/// 订单批量删除
|
|
|
///// 订单批量删除
|
|
|
/// </summary>
|
|
|
///// </summary>
|
|
|
/// <param name="shopId"></param>
|
|
|
///// <param name="shopId"></param>
|
|
|
/// <param name="orderIds"></param>
|
|
|
///// <param name="orderIds"></param>
|
|
|
[HttpPost("{shopId}")] |
|
|
//[HttpPost("{shopId}")]
|
|
|
public void OrderDelete([FromRoute]long shopId, [FromBody]IList<string> orderIds) |
|
|
//public void OrderDelete([FromRoute]long shopId, [FromBody]IList<string> orderIds)
|
|
|
{ |
|
|
//{
|
|
|
orderSyncBusiness.OrderDelete(shopId, orderIds); |
|
|
// orderSyncBusiness.OrderDelete(shopId, orderIds);
|
|
|
} |
|
|
//}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 根据日期同步
|
|
|
/// 根据日期同步
|
|
@ -105,5 +105,13 @@ namespace BBWY.Server.API.Controllers |
|
|
orderSyncBusiness.DeleteTimeOutWaitPayOrder(); |
|
|
orderSyncBusiness.DeleteTimeOutWaitPayOrder(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 修复订单Sku缺少的spu
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[HttpPost] |
|
|
|
|
|
public void RepairOrderSkuProductId() |
|
|
|
|
|
{ |
|
|
|
|
|
orderSyncBusiness.RepairOrderSkuProductId(); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|