| | |
| | | public Result updateReplenish( @RequestBody Map<String,Object> object){ |
| | | return Result.seccess(replenishService.updateReplenish(object)); |
| | | } |
| | | |
| | | @ApiOperation("补片流程卡明细查询接口") |
| | | @SaCheckPermission("PrintFlowCard.search") |
| | | @PostMapping("/selectPrint/{selectTime1}/{selectTime2}") |
| | | public Result selectPrint( |
| | | @PathVariable Date selectTime1, |
| | | @PathVariable Date selectTime2, |
| | | @RequestBody FlowCard flowCard) { |
| | | return Result.seccess(replenishService.selectPrintSv(selectTime1,selectTime2, flowCard)); |
| | | |
| | | } |
| | | |
| | | @ApiOperation("补片打印自定义标签数据查询接口") |
| | | @PostMapping("/getSelectPrintCustomLabel/{type}/{lableType}") |
| | | public Result getSelectPrintCustomLabel( @PathVariable String type, |
| | | @PathVariable Integer lableType, |
| | | @RequestBody Map<String, Object> object) { |
| | | return Result.seccess(replenishService.getSelectPrintCustomLabelSv(type,lableType,object)); |
| | | |
| | | } |
| | | |
| | | @ApiOperation("补片删除接口") |
| | | @SaCheckPermission("SelectReplenish.delete") |
| | | @PostMapping("/deleteReplenish") |
| | | public Result deleteReplenish( @RequestBody Map<String,Object> object){ |
| | | return Result.seccess(replenishService.deleteReplenishSv(object)); |
| | | } |
| | | |
| | | @ApiOperation("补片反审接口") |
| | | @SaCheckPermission("SelectReplenish.countertrial") |
| | | @PostMapping("/updateCancelReview") |
| | | public Result updateCancelReview( @RequestBody Map<String,Object> object){ |
| | | return Result.seccess(replenishService.updateCancelReviewSv(object)); |
| | | } |
| | | } |