z8018
2025-12-15 398e3c62ed3b3f2056d4909ff4d38d6c5ca26f0a
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Outbound/OutStockLockInfoController.cs
@@ -21,14 +21,20 @@
        {
        }
            [HttpGet("getOutStockLockInfo")]
    public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId)
        [HttpGet("getOutStockLockInfo")]
        public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId)
        {
            var list = await Service.GetByOrderDetailId(orderDetailId.ObjToInt());
            return WebResponseContent.Instance.OK(null, list);
        }
        [HttpPost, HttpGet, Route("GetByOrderDetailId"), AllowAnonymous]
        public List<Dt_OutStockLockInfo> GetByOrderDetailId(int orderDetailId)
        {
            return Service.GetByOrderDetailId(orderDetailId, null);
        }
    }
}