| | |
| | | /// </summary> |
| | | /// <param name="taskNum"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("InboundRequest"),AllowAnonymous] |
| | | public WebResponseContent InboundRequest([FromBody] SaveModel saveModel) |
| | | [HttpPost, Route("InboundRequest"), AllowAnonymous] |
| | | public WebResponseContent InboundRequest(string stationCode, string roadwayNo, string palletCode) |
| | | { |
| | | return Service.InboundRequest(saveModel); |
| | | return Service.InboundRequest(stationCode, roadwayNo, palletCode); |
| | | } |
| | | /// <summary> |
| | | /// 判断巷道内移库 |
| | |
| | | /// <param name="qty"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("InventoryIn"), AllowAnonymous] |
| | | public WebResponseContent InventoryIn([FromBody] string name,int qty) |
| | | public WebResponseContent InventoryIn([FromBody] string name, int qty) |
| | | { |
| | | return Service.InventoryIn(name,qty); |
| | | return Service.InventoryIn(name, qty); |
| | | } |
| | | |
| | | |
| | | [HttpPost,Route("UpdateTaskStatus") ,AllowAnonymous] |
| | | public WebResponseContent UpdateTaskStatus(int tasknum, int tasktype) |
| | | { |
| | | return Service.UpdateTaskStatus(tasknum, tasktype); |
| | | } |
| | | } |
| | | } |