| | |
| | | package com.example.erp.controller.pp; |
| | | |
| | | import cn.dev33.satoken.annotation.SaCheckPermission; |
| | | import com.aspose.cad.internal.V.S; |
| | | import com.example.erp.common.Constants; |
| | | import com.example.erp.dto.pp.FlowCardDTO; |
| | | import com.example.erp.dto.pp.TeamOutputDTO; |
| | |
| | | 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( |
| | |
| | | return Result.success(flowCardService.selectCompletedSv(processId, orderNumber,process)); |
| | | |
| | | } |
| | | |
| | | @ApiOperation("根据不同参数查询流程卡生产进度") |
| | | @PostMapping("/selectProcessCardProgress") |
| | | public Result selectProcessCardProgress(@RequestBody Map<String, String> object) { |
| | | return flowCardService.selectProcessCardProgressSv(object); |
| | | } |
| | | } |