啊鑫
2024-12-25 e9ef6afe836784d7fbd3e3ca6ad813e86866a6a8
Controllers/Warehouse/MesItemBlController.cs
@@ -371,5 +371,29 @@
        }
    }
    [HttpPost("PrintBarcodeForOverPicking")]
    public ResponseResult PrintForOverPicking(WarehouseQuery query)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var (success, pendingList) =
                _manager.PrintBarcodeForOverPicking(query);
            resultInfos.success = success;
            resultInfos.pendingList = pendingList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    #endregion
}