Merge branch 'dev/base' into dev/etl/pasien

This commit is contained in:
Salman Manoe 2024-07-03 13:22:36 +07:00
commit 9d40bd579a

View File

@ -48,7 +48,7 @@ public class RemunerasiController extends LocaleController<LogbookKinerjaVO> {
@RequestMapping(value = "/logbook-tarif/{idPegawai}/{bulan}", method = GET)
public ResponseEntity<Object> recap(HttpServletRequest request, @PathVariable("idPegawai") Integer idPegawai,
@PathVariable("bulan") String bulan) {
LOGGER.error("Superapp requesting logbook tarif data id pegawai {} bulan {}", idPegawai, bulan);
LOGGER.info("Superapp requesting logbook tarif data id pegawai {} bulan {}", idPegawai, bulan);
List<Map<String, Object>> result = pelayananPasienService.rekapLogbook(idPegawai, bulan);
return new ResponseEntity<>(result, HttpStatus.OK);