update daftar tarif
This commit is contained in:
parent
8460f2ab38
commit
2e2fb930f7
@ -364,9 +364,13 @@ public class ReportingController {
|
||||
|
||||
@RequestMapping(value = {"/lap-tindakan"}, method = {RequestMethod.GET})
|
||||
public void exportPdfLaporanTindakan(
|
||||
@RequestParam("ruanganid") Integer ruanganid, @RequestParam("instalasiid") Integer instalasiid,
|
||||
@RequestParam("kelasid") Integer kelasid, @RequestParam("unitid") Integer unitid,
|
||||
@RequestParam("produkid") Integer produkid, @RequestParam("statusprodukid") Integer statusprodukid, ModelAndView mv,
|
||||
@RequestParam("ruanganid") Integer ruanganid,
|
||||
@RequestParam(value = "instalasiid", required = false, defaultValue = "") Integer instalasiid,
|
||||
@RequestParam(value = "kelasid", required = false, defaultValue = "") Integer kelasid,
|
||||
@RequestParam(value = "unitid", required = false, defaultValue = "") Integer unitid,
|
||||
@RequestParam(value = "produkid", required = false, defaultValue = "") Integer produkid,
|
||||
@RequestParam(value = "statusprodukid", required = false, defaultValue = "") Integer statusprodukid,
|
||||
ModelAndView mv,
|
||||
HttpServletRequest req, HttpServletResponse response) throws Exception {
|
||||
JasperPrint jasperPrint = this.reportingService
|
||||
.printPdfLaporanTindakan(ruanganid, instalasiid, kelasid, unitid, produkid, statusprodukid);
|
||||
|
||||
@ -1283,7 +1283,6 @@ public class ReportingDao {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public JasperPrint exportLpTarif(Integer idInstalasi, Integer idProduk, Integer idTarif, String printBy) {
|
||||
try (Connection conn = this.jdbcTemplate1.getDataSource().getConnection()) {
|
||||
String path = jaspersim2DirPath + "tindakan_mba_ayu_putri.jrxml";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user