| | |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_IOutboundService; |
| | | using WIDESEA_Model.Models; |
| | |
| | | public OutStockLockInfoController(IOutStockLockInfoService service) : base(service) |
| | | { |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ£é |
| | | /// </summary> |
| | | /// <param name="saveModel"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetStockOutboundOrder")] |
| | | public List<Dt_OutStockLockInfo> GetStockOutboundOrder([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetStockOutboundOrder(saveModel); |
| | | } |
| | | /// <summary> |
| | | /// æ£é宿 |
| | | /// </summary> |
| | | /// <param name="palletCode"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("MaterialPick"), AllowAnonymous] |
| | | public WebResponseContent MaterialPick(string palletCode) |
| | | { |
| | | return Service.MaterialPick(palletCode); |
| | | } |
| | | } |
| | | } |