南骏 池
4 天以前 38748f8fbe700cc65721fc2d9b74306ca5590e01
Controllers/Warehouse/MesXsthController.cs
@@ -12,7 +12,7 @@
/// </summary>
[Route("api/[controller]")]
[ApiController]
public class MesXsthController : ControllerBase
public class MesXsthController : BaseController
{
    private readonly MesXsthManager _manager = new();
@@ -176,7 +176,7 @@
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = _manager.GetXsthBillNo(query);
            resultInfos.tbBillList = _manager.GetXsthBillNo(query, RequestInfo);
            return new ResponseResult
            {
                status = 0,
@@ -202,7 +202,7 @@
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = _manager.GetMesItemDetailByBillNo(query);
            resultInfos.tbBillList = _manager.GetMesItemDetailByBillNo(query, RequestInfo);
            if (resultInfos.tbBillList.Count < 1)
            {