| | |
| | | using MES.Service.service.Warehouse; |
| | | using MES.Service.util; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using Newtonsoft.Json; |
| | | |
| | | namespace MESApplication.Controllers.Warehouse; |
| | | |
| | |
| | | [Route("api/[controller]")] |
| | | public class MesInvItemOutsController : ControllerBase |
| | | { |
| | | private readonly MesInvItemOutsManager m = new(); |
| | | |
| | | private readonly MessageCenterManager _manager = new(); |
| | | private readonly MesInvItemOutsManager m = new(); |
| | | |
| | | private readonly string METHOD = "POST"; |
| | | |
| | |
| | | entity.TableName = TableName; |
| | | entity.Url = URL + "ReturnRequest"; |
| | | entity.Method = METHOD; |
| | | entity.Data = Newtonsoft.Json.JsonConvert.SerializeObject(oItemOut); |
| | | entity.Data = JsonConvert.SerializeObject(oItemOut); |
| | | entity.Status = 1; |
| | | entity.CreateBy = "PL017"; |
| | | try |