| | |
| | | return Result.seccess(flowCardService.getSelectPrintLabelSv1(object)); |
| | | } |
| | | |
| | | @ApiOperation("打印标签明细查询接口") |
| | | @PostMapping("/getSelectPrintLabelDetails") |
| | | public Result getSelectPrintLabelDetails(@RequestBody Map<String, Object> object) { |
| | | return Result.seccess(flowCardService.getSelectPrintLabelDetails(object)); |
| | | } |
| | | |
| | | @ApiOperation("打印自定义标签数据查询接口") |
| | | @PostMapping("/getSelectPrintCustomLabel/{type}/{lableType}") |
| | | public Result getSelectPrintCustomLabel( @PathVariable String type, |
| | |
| | | } |
| | | @ApiOperation("汉玻获取流程卡接口") |
| | | @PostMapping("/getProcessCardList/hanbo") |
| | | public Result getProcessCard(@RequestBody String processCard) { |
| | | return Result.seccess(flowCardService.getProcessCard(processCard)); |
| | | public Result getProcessCard(@RequestBody Map<String,String> processCards) { |
| | | return Result.seccess(flowCardService.getProcessCard(processCards)); |
| | | } |
| | | |
| | | @ApiOperation("复选框删除流程卡") |
| | | @SaCheckPermission("SelectProcessCard.delete") |
| | | @PostMapping("/checkboxDelete") |
| | | public Result checkboxDelete( |
| | | @RequestBody Map<String, Object> object |
| | | ) { |
| | | |
| | | return Result.seccess(flowCardService.checkboxDeleteSv(object)); |
| | | } |
| | | |
| | | } |