| | |
| | | } |
| | | |
| | | [HttpGet, Route("TaskCompleted"), AllowAnonymous] |
| | | public WebResponseContent TaskCompleted(int taskNum) |
| | | public WebResponseContent TaskCompleted(int taskNum,int HowWorks) |
| | | { |
| | | return Service.TaskCompleted(taskNum); |
| | | return Service.TaskCompleted(taskNum, HowWorks); |
| | | } |
| | | |
| | | [HttpPost, Route("GenerateOutboundTask")] |
| | |
| | | { |
| | | return Service.PalletQueryinventory(); |
| | | } |
| | | [HttpPost, Route("RelocationTaskCompleted"), AllowAnonymous] |
| | | public WebResponseContent RelocationTaskCompleted([FromBody] GenerateInv2 generate) |
| | | [HttpPost, Route("RelocationInTaskCompleted"), AllowAnonymous] |
| | | public WebResponseContent RelocationInTaskCompleted([FromBody] Dt_Task task) |
| | | { |
| | | return Service.RelocationTaskCompleted(generate); |
| | | return Service.RelocationInTaskCompleted(task); |
| | | } |
| | | |
| | | [HttpPost, Route("Rawmaterialout"), AllowAnonymous] |