update lap bedah

This commit is contained in:
ridwan 2025-11-18 15:56:45 +07:00
parent b68fee22cc
commit 39b029b0d2

View File

@ -104,8 +104,8 @@ public class ReportingController {
JasperExportManager.exportReportToPdfStream(jasperPrint, response.getOutputStream());
}
@RequestMapping(value = {"/lap-bedah/{noregis}"}, method = {RequestMethod.GET})
public void exportLapBedahPasien(@PathVariable("noregis") String noregis,
@RequestMapping(value = {"/lap-bedah"}, method = {RequestMethod.GET})
public void exportLapBedahPasien(@RequestParam("noregis") String noregis,
ModelAndView mv, HttpServletResponse response) throws Exception {
JasperPrint jasperPrint = this.reportingService.printReportLapBedah(noregis);
response.setContentType("application/pdf");