新增吉克云销售数据推送到金蝶云星空

This commit is contained in:
2025-07-18 10:14:31 +08:00
parent 99c400da6c
commit 5b04ef20c2
33 changed files with 2101 additions and 657 deletions

View File

@@ -13,18 +13,32 @@ namespace MyCode.Project.WebApi.Controllers
/// </summary>
public class TestController : BaseAPIController
{
private IJackYunTaskService _jackYunTaskService;
private IWMSService _wMSService;
private IJackYunStockinService _jackYunStockinService;
private IOrderPushService _orderPushService;
public TestController(IJackYunTaskService jackYunTaskService, IWMSService wMSService , IJackYunStockinService jackYunStockinService)
public TestController(IJackYunTaskService jackYunTaskService, IWMSService wMSService, IJackYunStockinService jackYunStockinService)
{
_jackYunTaskService = jackYunTaskService;
_wMSService = wMSService;
_jackYunStockinService = jackYunStockinService;
}
#region
/// <summary>
/// 调度运行抓吉客云销售订单
/// </summary>
[HttpGet]
[AllowAnonymous]
public void TaskSendKingdeeSaleOrderById(string now)
{
_jackYunTaskService.TaskGetJackYunOrder(now);
}
#endregion
//#region 调度运行抓吉客云销售订单
///// <summary>
@@ -45,9 +59,9 @@ namespace MyCode.Project.WebApi.Controllers
/// </summary>
[HttpGet]
[AllowAnonymous]
public List<WMStoJackyunInventoryMovementView1> GetList(DateTime now)
public List<WMStoJackyunInventoryMovementView1> GetList(DateTime now)
{
return _wMSService.GetList(now);
return _wMSService.GetList(now);
}
#endregion
@@ -59,7 +73,7 @@ namespace MyCode.Project.WebApi.Controllers
[AllowAnonymous]
public string GetAndMergeJackYunOrder(string now)
{
return _jackYunTaskService.GetAndMergeJackYunOrder(now);
return _jackYunTaskService.GetAndMergeJackYunOrder(now);
}
#endregion