1
yangpeixing
2026-03-02 96b7df5c86df57e5b1bb92c377d5e41e0d4355b9
WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Outbound/OutboundOrderDetailController.cs
@@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
@@ -39,5 +40,15 @@
        {
            return Service.RevokeLockOutboundStock(id);
        }
        /// <summary>
        /// 出库明细取消回调ERP
        /// </summary>
        /// <param name="keys"></param>
        /// <returns></returns>
        [HttpPost, Route("CancelOutFeedbackERP"), AllowAnonymous]
        public WebResponseContent CancelOutFeedbackERP([FromBody] int[] keys)
        {
            return Service.CancelOutFeedbackERP(keys);
        }
    }
}