wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_WMSServer/Controllers/MES/MesController.cs
@@ -15,6 +15,8 @@
using WIDESEA_DTO.MES;
using WIDESEA_IOutboundService;
using WIDESEA_IInboundService;
using WIDESEA_External.MESService;
using WIDESEA_External.Model;
namespace WIDESEA_WMSServer.Controllers.MES
{
@@ -28,12 +30,14 @@
        private readonly ITaskService _taskService;
        private readonly IOutMESOrderService _outMESOrderService;
        private readonly IMESProInOrderInfoService _proInOrderInfoService;
        private readonly IInvokeMESService _invokeMESService;
        public MesController(ITaskService taskService,IOutMESOrderService outMESOrderService,IMESProInOrderInfoService proInOrderInfoService)
        public MesController(ITaskService taskService,IOutMESOrderService outMESOrderService,IMESProInOrderInfoService proInOrderInfoService, IInvokeMESService invokeMESService)
        {
            _taskService = taskService;
            _outMESOrderService = outMESOrderService;
            _proInOrderInfoService=proInOrderInfoService;
            _invokeMESService = invokeMESService;
        }
        /// <summary>
        /// æŽ¥æ”¶MES领料计划
@@ -43,7 +47,7 @@
        public WebResponseContent ReceiveOutBound([FromBody] List<OutMESOrderDTO> outMESOrderDTOs)
        {
            return _outMESOrderService.ReceiveOutBound(outMESOrderDTOs);
            return _taskService.ReceiveOutBound(outMESOrderDTOs);
        }
        /// <summary>
        /// MES自动叫料接口
@@ -82,7 +86,7 @@
        [HttpPost, HttpGet, Route("ReceiveProCodeInfo"), AllowAnonymous]
        public WebResponseContent ReceiveProCodeInfo([FromBody] List<MESProInDTO> proInDTOs)
        {
            return _proInOrderInfoService.ReceiveProCodeInfo(proInDTOs);
            return _taskService.ReceiveProCodeInfo(proInDTOs);
        }
        /// <summary>
@@ -94,5 +98,55 @@
        {
            return _proInOrderInfoService.ReceiveProOrderStop(orderStopDTO);
        }
        /// <summary>
        /// MES配送出发通知
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("MESDispatchUp"), AllowAnonymous]
        public string MESDispatchUp([FromBody] MESDispatchModel mESDispatchModel)
        {
            return _invokeMESService.MESDispatchUp(mESDispatchModel);
        }
        /// <summary>
        /// MES配送到达通知
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("MESDelivery"), AllowAnonymous]
        public string MESDelivery([FromBody] MESDeliveryModel mESDeliveryModel)
        {
            return _invokeMESService.MESDelivery(mESDeliveryModel);
        }
        /// <summary>
        /// MES退料空托接收通知
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("MESRecepNotice"), AllowAnonymous]
        public string MESRecepNotice([FromBody] MESRecepNoticeModel mESRecepNoticeModel)
        {
            return _invokeMESService.MESRecepNotice(mESRecepNoticeModel);
        }
        /// <summary>
        /// MES小车到达通知
        /// </summary>
        /// <param name="mESAvgArriveNoticeModel"></param>
        /// <returns></returns>
        [HttpPost, Route("MESAvgArriveNotice"), AllowAnonymous]
        public string MESAvgArriveNotice([FromBody] MESAvgArriveNoticeModel mESAvgArriveNoticeModel)
        {
            return _invokeMESService.MESAvgArriveNotice(mESAvgArriveNoticeModel);
        }
        /// <summary>
        /// MES产量回传
        /// </summary>
        /// <param name="boxCode"></param>
        /// <returns></returns>
        [HttpPost, Route("MESBoxCodeNotice"), AllowAnonymous]
        public string MESBoxCodeNotice(string boxCode)
        {
            return _invokeMESService.MESBoxCodeNotice(boxCode);
        }
    }
}