| | |
| | | return Result.success(flowCardService.updateTerminationSv(processId,orderNumber,value)); |
| | | } |
| | | |
| | | @ApiOperation("取消终止") |
| | | @PostMapping("/updateTerminationNo/{processId}/{orderNumber}") |
| | | public Result updateTerminationNo( |
| | | @PathVariable String processId, |
| | | @PathVariable Integer orderNumber) { |
| | | |
| | | return Result.success(flowCardService.updateTerminationNoSv(processId,orderNumber)); |
| | | } |
| | | |
| | | @ApiOperation("查询用于修改生产终止数量的完工数量") |
| | | @PostMapping("/selectCompleted/{processId}/{orderNumber}/{process}") |
| | | public Result selectCompleted( |