| | |
| | | 锘縰sing Microsoft.AspNetCore.Http; |
| | | 锘縰sing Autofac.Core; |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | |
| | | |
| | | |
| | | [HttpPost("return-to-stock")] |
| | | public async Task<WebResponseContent> ReturnToStock( ) |
| | | public async Task<WebResponseContent> ReturnToStock([FromBody] ConfirmPickingDto dto) |
| | | { |
| | | var data= ""; |
| | | return WebResponseContent.Instance.OK("", data); |
| | | return await Service.ReturnRemaining(dto.OrderNo, dto.PalletCode, ""); |
| | | } |
| | | |
| | | [HttpPost("direct-outbound")] |