|
|
@ -6,6 +6,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
|
|
|
|
import com.ruoyi.system.domain.TdCheck;
|
|
|
|
import com.ruoyi.system.domain.check.TdCheckReport;
|
|
|
|
import com.ruoyi.system.domain.check.TdCheckReport;
|
|
|
|
import com.ruoyi.system.domain.check.dto.TdCheckReportDTO;
|
|
|
|
import com.ruoyi.system.domain.check.dto.TdCheckReportDTO;
|
|
|
|
import com.ruoyi.web.controller.manager.CheckReportManager;
|
|
|
|
import com.ruoyi.web.controller.manager.CheckReportManager;
|
|
|
@ -174,5 +175,16 @@ public class CheckReportController extends BaseController {
|
|
|
|
return toAjax(checkReportManager.saveOrUpdate(checkReportDTO));
|
|
|
|
return toAjax(checkReportManager.saveOrUpdate(checkReportDTO));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 打印操作
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@RequiresPermissions("system:check:print")
|
|
|
|
|
|
|
|
@GetMapping("/checkprint/{checkId}")
|
|
|
|
|
|
|
|
public String checkPrint(@PathVariable("checkId") String checkId, ModelMap mmap) {
|
|
|
|
|
|
|
|
TdCheckReportDTO tdCheckReportDTO = checkReportManager.getTdCheckReportDTO(checkId);
|
|
|
|
|
|
|
|
mmap.put("tdCheckReportDTO", tdCheckReportDTO);
|
|
|
|
|
|
|
|
return prefix + "/checkprint";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|