| | |
| | | } |
| | | |
| | | [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.ManualOutbound3(saveModel); |
| | | } |
| | | [HttpPost, Route("ManualOutbound4"), AllowAnonymous] |
| | | public WebResponseContent ManualOutbound4([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.ManualOutbound4(saveModel); |
| | | } |
| | | [HttpPost, Route("ManualOutboundDeleteinventory"), AllowAnonymous] |
| | | public WebResponseContent ManualOutboundDeleteinventory([FromBody] SaveModel saveModel) |
| | | { |
| | |
| | | { |
| | | 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] |