using System.Dynamic;
|
using MES.Service.Dto.webApi;
|
using MES.Service.Modes;
|
using MES.Service.service;
|
using MES.Service.service.BasicData.Material;
|
using MES.Service.util;
|
using Microsoft.AspNetCore.Mvc;
|
using Newtonsoft.Json;
|
|
namespace MESApplication.Controllers.BasicData;
|
|
/// <summary>
|
/// 模具号接口控制器
|
/// </summary>
|
[ApiController]
|
[Route("api/[controller]")]
|
public class MesMouldController : ControllerBase
|
{
|
private readonly MessageCenterManager _manager = new();
|
private readonly MesMouldManager m = new();
|
|
private readonly string METHOD = "POST";
|
private readonly string TableName = "MES_MOULD";
|
private readonly string URL = "http://localhost:10054/api/MesMould/";
|
|
/// <summary>
|
/// 保存单个模具数据(带Type逻辑)
|
/// </summary>
|
[HttpPost("Save")]
|
public ResponseResult Save(ErpMould unit)
|
{
|
var entity = new MessageCenter
|
{
|
TableName = TableName,
|
Url = URL + "Save",
|
Method = METHOD,
|
Data = JsonConvert.SerializeObject(unit),
|
Status = 1,
|
Route = unit.Code,
|
CreateBy = "PL017"
|
};
|
try
|
{
|
dynamic resultInfos = new ExpandoObject();
|
var save = m.Save(unit);
|
resultInfos.tbBillList = save;
|
|
entity.Result = 0;
|
if (save) entity.Result = 1;
|
|
entity.DealWith = 1;
|
_manager.save(entity);
|
|
return new ResponseResult { status = 0, message = "OK", data = resultInfos };
|
}
|
catch (Exception ex)
|
{
|
entity.Result = 0;
|
entity.DealWith = 0;
|
entity.ResultData = ex.Message;
|
_manager.save(entity);
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
/// <summary>
|
/// 批量保存模具数据(带Type逻辑)
|
/// </summary>
|
[HttpPost("SaveList")]
|
public ResponseResult SaveList(List<ErpMould> units)
|
{
|
var entity = new MessageCenter
|
{
|
TableName = TableName,
|
Url = URL + "SaveList",
|
Method = METHOD,
|
Data = JsonConvert.SerializeObject(units),
|
Status = 1,
|
CreateBy = "PL017"
|
};
|
try
|
{
|
dynamic resultInfos = new ExpandoObject();
|
var save = m.SaveList(units);
|
resultInfos.tbBillList = save;
|
|
entity.Result = 0;
|
if (save) entity.Result = 1;
|
|
entity.DealWith = 1;
|
_manager.save(entity);
|
|
return new ResponseResult { status = 0, message = "OK", data = resultInfos };
|
}
|
catch (Exception ex)
|
{
|
entity.Result = 0;
|
entity.DealWith = 0;
|
entity.ResultData = ex.Message;
|
_manager.save(entity);
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
[HttpPost("GetList")]
|
public ResponseResult GetList()
|
{
|
try
|
{
|
dynamic resultInfos = new ExpandoObject();
|
resultInfos.tbBillList = m.GetList();
|
return new ResponseResult { status = 0, message = "OK", data = resultInfos };
|
}
|
catch (Exception ex)
|
{
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
[HttpPost("GetById")]
|
public ResponseResult GetById(int id)
|
{
|
try
|
{
|
dynamic resultInfos = new ExpandoObject();
|
resultInfos.tbBillList = m.GetById(id);
|
return new ResponseResult { status = 0, message = "OK", data = resultInfos };
|
}
|
catch (Exception ex)
|
{
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
[HttpPost("DeleteByIds")]
|
public ResponseResult DeleteByIds([FromBody] object[] ids)
|
{
|
try
|
{
|
dynamic resultInfos = new ExpandoObject();
|
resultInfos.tbBillList = m.DeleteByIds(ids);
|
return new ResponseResult { status = 0, message = "OK", data = resultInfos };
|
}
|
catch (Exception ex)
|
{
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
}
|