cnf
2025-11-08 65cb0d9f463d4000e3c6a99c78a8b551449bcf1c
Controllers/Warehouse/TransferOutController.cs
@@ -110,12 +110,12 @@
    /// <response code="200">成功获取调拨出库单号列表</response>
    /// <response code="400">获取失败</response>
    [HttpPost("GetTransferOutNoList")]
    public ResponseResult GetTransferOutNoList()
    public ResponseResult GetTransferOutNoList([FromBody] WarehouseQuery query)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = _manager.GetTransferOutNoList(RequestInfo);
            resultInfos.tbBillList = _manager.GetTransferOutNoList(query,RequestInfo);
            return new ResponseResult
            {
                status = 0,