duyongjia
2025-01-09 daf541c51a7687b338e17b1543266bacee4ff2d3
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs
@@ -1,11 +1,14 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_DTO.Inbound;
using WIDESEA_IInboundService;
using WIDESEA_Model;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.System.Request;
namespace WIDESEA_WMSServer.Controllers.Inbound
{
@@ -33,5 +36,16 @@
        {
            return Service.GetInboundOrderDetail(OrderNo);
        }
        /// <summary>
        /// ç«‹åº“退回信息接口,供上游系统调用,立库生成退货任务
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("returnInventory"), AllowAnonymous]
        public ReturnInventoryResponse returnInventory([FromBody] string inventoryRequest)
        {
            return Service.returnInventory(inventoryRequest);
        }
    }
}