using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core;
|
using WIDESEA_Core.Attributes;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IOutboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Outbound
|
{
|
/// <summary>
|
/// MES成品提库单
|
/// </summary>
|
[Route("api/MesRworkOutboundOrder")]
|
[ApiController]
|
public class MesRworkOutboundOrderController : ApiBaseController<IMesRworkOutboundOrderService, Dt_MesRworkOutboundOrder>
|
{
|
public MesRworkOutboundOrderController(IMesRworkOutboundOrderService service) : base(service)
|
{
|
}
|
/// <summary>
|
/// 成品MES提库出库完后一包一包拣选
|
/// </summary>
|
/// <returns></returns>
|
[HttpPost, Route("ProductDeliveryOrder"), AllowAnonymous]
|
public WebResponseContent MesRworkOutPick(int OrderId, string InrPKCode, int Count = 0)
|
{
|
return Service.MesRworkOutPick(OrderId, InrPKCode, Count);
|
}
|
}
|
}
|