| | |
| | | import org.jeecg.modules.tms.entity.BaseTools; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBound; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBoundDetail; |
| | | import org.jeecg.modules.tms.entity.dto.LossBoundFlowDto; |
| | | import org.jeecg.modules.tms.entity.dto.StocktakingBoundFlowDto; |
| | | import org.jeecg.modules.tms.entity.vo.ToolsStocktakingVo; |
| | | import org.jeecg.modules.tms.enums.OutBillStatus; |
| | | import org.jeecg.modules.tms.mapper.ToolsStocktakingBoundMapper; |
| | |
| | | return Result.OK("提交成功"); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 审批流程 |
| | | * @param stocktakingBoundFlowDto |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "审批流程") |
| | | @ApiOperation(value = "报损单-审批流程", notes = "报损单-审批流程") |
| | | @PostMapping("/approval") |
| | | public Result<?> approval(@RequestBody StocktakingBoundFlowDto stocktakingBoundFlowDto) { |
| | | toolsStocktakingBoundService.approvalProcess(stocktakingBoundFlowDto); |
| | | return Result.OK("操作成功"); |
| | | } |
| | | /** |
| | | * 编辑 |
| | | * |