heshaofeng
2026-01-13 64840e4e6d97d177b8a765ba8c53888abcf86d16
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/TakeStockOrderController.cs
@@ -76,9 +76,18 @@
        /// æ‚发杂收单处理
        /// </summary>
        [HttpPost, HttpGet, Route("DocumentReconciliation"), AllowAnonymous]
        public WebResponseContent DocumentReconciliation(int orderId, int id)
        public WebResponseContent DocumentReconciliation(string barcode)
        {
            return Service.DocumentReconciliation(orderId, id);
            return Service.DocumentReconciliation(barcode);
        }
        /// <summary>
        /// ç›˜ç‚¹ç»„盘
        /// </summary>
        [HttpPost, HttpGet, Route("StockTakeGroupPallet"), AllowAnonymous]
        public WebResponseContent StockTakeGroupPallet(string barcode, string boxNo)
        {
            return Service.StockTakeGroupPallet(barcode,boxNo);
        }
    }
}