tjx
2025-11-21 7d13b041f6cf87bddb0e3523c4cf1a328fc159f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System.Dynamic;
using MES.Service.Dto.webApi;
using MES.Service.Modes;
using MES.Service.service.Warehouse;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
 
namespace MESApplication.Controllers.Warehouse;
 
[ApiController]
[Route("api/[controller]")]
public class MesInvItemStocksController : ControllerBase
{
    private readonly MesInvItemStocksManager m = new();
 
    /// <summary>
    ///     获取可退货物料库存
    /// </summary>
    /// <returns></returns>
    [HttpPost("GetReturnableStocks")]
    public ResponseResult GetReturnableStocks()
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.GetReturnableStocks();
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    ///     生成退料请求单
    /// </summary>
    /// <param name="dto">退料请求参数</param>
    /// <returns></returns>
    [HttpPost("CreateReturnMaterialRequest")]
    public ResponseResult CreateReturnMaterialRequest([FromBody] ItemStockQueryDto dto)
    {
        try
        {
            var result = m.CreateReturnMaterialRequest(dto);
            if (result)
            {
                return new ResponseResult
                {
                    status = 0,
                    message = "退料请求单生成成功",
                    data = null
                };
            }
            else
            {
                return new ResponseResult
                {
                    status = 1,
                    message = "退料请求单生成失败",
                    data = null
                };
            }
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}