package cn.lihu.jh.module.ecg.controller.admin.devrent; import cn.lihu.jh.framework.common.util.exception.ExceptionUtils; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.*; import org.springframework.validation.annotation.Validated; import org.springframework.security.access.prepost.PreAuthorize; import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.Operation; import java.util.*; import java.io.IOException; import cn.lihu.jh.framework.common.pojo.PageParam; import cn.lihu.jh.framework.common.pojo.PageResult; import cn.lihu.jh.framework.common.pojo.CommonResult; import cn.lihu.jh.framework.common.util.object.BeanUtils; import cn.lihu.jh.framework.excel.core.util.ExcelUtils; import cn.lihu.jh.framework.apilog.core.annotation.ApiAccessLog; import static cn.lihu.jh.framework.apilog.core.enums.OperateTypeEnum.*; import static cn.lihu.jh.framework.common.util.exception.ExceptionUtils.formatException; import static cn.lihu.jh.module.ecg.enums.ErrorCodeConstants.*; import cn.lihu.jh.module.ecg.controller.admin.devrent.vo.*; import cn.lihu.jh.module.ecg.dal.dataobject.devrent.DevRentDO; import cn.lihu.jh.module.ecg.service.devrent.DevRentService; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; import javax.validation.Valid; @Tag(name = "管理后台 - 装机拆机") @RestController @RequestMapping("/ecg/dev-rent") @Validated @Slf4j public class DevRentController { @Resource private DevRentService devRentService; @PostMapping("/dev-install") @Operation(summary = "装机") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult devInstall(@Valid @RequestBody DevRentSaveReqVO createReqVO) { try { return devRentService.installOperation(createReqVO); } catch ( RuntimeException runtimeException ) { String err = ExceptionUtils.formatException( runtimeException ); log.error("devInstall: " + err); return CommonResult.error(DEV_INSTALL_EXCEPTION); } } @PostMapping("/dev-dismantle") @Operation(summary = "拆机") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult devDismantle(@Valid @RequestBody DevRentSaveReqVO createReqVO) { try { devRentService.dismantleOperation(createReqVO); return CommonResult.success(0L); } catch ( RuntimeException runtimeException ) { String err = ExceptionUtils.formatException( runtimeException ); log.error("devDismantle: " + err); return CommonResult.error(DEV_DISMANTLE_EXCEPTION); } } @PostMapping("/dev-cancel") @Operation(summary = "取消装机") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult devCancel(@Valid @RequestBody DevCancelReqVO cancelReqVO) { try { return devRentService.cancelOperation(cancelReqVO); } catch ( RuntimeException runtimeException ) { String err = ExceptionUtils.formatException( runtimeException ); log.error("devCancel: " + err); return CommonResult.error(DEV_CANCEL_EXCEPTION); } } @PostMapping("/create") @Operation(summary = "创建装机拆机") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult createDevRent(@Valid @RequestBody DevRentSaveReqVO createReqVO) { return CommonResult.success(devRentService.createDevRent(createReqVO)); } @PutMapping("/update") @Operation(summary = "更新装机拆机") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult updateDevRent(@Valid @RequestBody DevRentSaveReqVO updateReqVO) { devRentService.updateDevRent(updateReqVO); return CommonResult.success(true); } @DeleteMapping("/delete") @Operation(summary = "删除装机拆机") @Parameter(name = "id", description = "编号", required = true) @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult deleteDevRent(@RequestParam("id") Long id) { devRentService.deleteDevRent(id); return CommonResult.success(true); } @GetMapping("/get") @Operation(summary = "获得装机拆机") @Parameter(name = "id", description = "编号", required = true, example = "1024") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult getDevRent(@RequestParam("id") Long id) { DevRentDO devRent = devRentService.getDevRent(id); return CommonResult.success(BeanUtils.toBean(devRent, DevRentRespVO.class)); } @GetMapping("/page") @Operation(summary = "获得装机拆机分页") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult> getDevRentPage(@Valid DevRentPageReqVO pageReqVO) { PageResult pageResult = devRentService.getDevRentPage(pageReqVO); return CommonResult.success(BeanUtils.toBean(pageResult, DevRentRespVO.class)); } @GetMapping("/export-excel") @Operation(summary = "导出装机拆机 Excel") @PreAuthorize("@ss.hasPermission('ecg:dev-rent:export')") @ApiAccessLog(operateType = EXPORT) public void exportDevRentExcel(@Valid DevRentPageReqVO pageReqVO, HttpServletResponse response) throws IOException { pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); List list = devRentService.getDevRentPage(pageReqVO).getList(); // 导出 Excel ExcelUtils.write(response, "装机拆机.xls", "数据", DevRentRespVO.class, BeanUtils.toBean(list, DevRentRespVO.class)); } @GetMapping("/get-latest-rent") @Operation(summary = "获取患者设备的最近租赁情况") @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") public CommonResult getLatestRent( @Valid DevRentSearchReqVO searchReqVO ) { DevRentDO devRent = devRentService.getLatestRent( searchReqVO ); return CommonResult.success(BeanUtils.toBean(devRent, DevRentRespVO.class)); } }