| | |
| | | [Route("api/[controller]/[action]")] |
| | | [ApiController] |
| | | [Authorize] |
| | | |
| | | public class BllAsnController : ControllerBase |
| | | { |
| | | #region 依赖注入 |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #region 托盘绑定 |
| | | #region 组托收货 |
| | | [HttpPost] |
| | | public IActionResult GetPalletBindList(PalletBindVm model) |
| | | { |
| | |
| | | { |
| | | try |
| | | { |
| | | var models = _PalletBindSvc.GetLocateList("W01", model.RoadwayNo, model.Row, model.Column, model.Layer, model.LocateNo, model.StockDetailId, model.Page, model.Limit, out int count); |
| | | var models = _PalletBindSvc.GetLocateList("W01", model.RoadwayNo, model.Row, model.Column, model.Layer, model.LocateNo, |
| | | model.StockDetailId, model.Page, model.Limit, out int count); |
| | | |
| | | return Ok(new { code = 0, count, msg = "获取指定储位信息", data = models }); |
| | | } |