This commit is contained in:
2025-07-28 17:28:21 +08:00
parent 6335e88415
commit de8447bece
5 changed files with 26 additions and 23 deletions

View File

@@ -34,9 +34,9 @@ namespace MyCode.Project.WebApi.Controllers
/// </summary>
[HttpGet]
[AllowAnonymous]
public void TaskSendKingdeeSaleOrderById(string id)
public string TaskSendKingdeeSaleOrderById(string id)
{
_orderPushService.PushOrderToKingDee(id);
return _orderPushService.PushOrderToKingDee(id);
}
@@ -58,24 +58,24 @@ namespace MyCode.Project.WebApi.Controllers
/// <summary>
/// 抓WMS订单
/// </summary>
//[HttpGet]
//[AllowAnonymous]
//public List<WMStoJackyunInventoryMovementView1> GetList(DateTime now)
//{
// return _wMSService.GetList(now);
//}
[HttpGet]
[AllowAnonymous]
public List<WMStoJackyunInventoryMovementView1> GetList(DateTime now)
{
return _wMSService.GetList(now);
}
#endregion
#region
/// <summary>
/// 合并吉客云订单到新表
/// </summary>
//[HttpGet]
//[AllowAnonymous]
//public string GetAndMergeJackYunOrder(string now)
//{
// return _jackYunTaskService.GetAndMergeJackYunOrder(now);
//}
[HttpGet]
[AllowAnonymous]
public string GetAndMergeJackYunOrder(string now)
{
return _jackYunTaskService.GetAndMergeJackYunOrder(now);
}
#endregion