perbaikan daftar dokter verifikasi logbook otomatis jika capaian belum verifikasi manual

This commit is contained in:
Salman Manoe 2021-07-31 20:02:56 +07:00
parent a4e9f37438
commit e03c938c5f

View File

@ -187,7 +187,7 @@ public interface LogbookKinerjaDao extends PagingAndSortingRepository<LogbookKin
@Query("select distinct lkt.pegawaiId " + "from LogbookKinerja lkt "
+ "where lkt.indikatorKinerjaId = :indikatorId " + "and to_char(lkt.bulan,'yyyy-MM') = :bulan "
+ "and lkt.statusEnabled is true " + "and lkt.statusVerifikasi is true")
+ "and lkt.capaian = 0.0 " + "and lkt.statusEnabled is true " + "and lkt.statusVerifikasi is true")
List<Integer> findPegawaiKontrakByIndikator(@Param("bulan") String bulan,
@Param("indikatorId") Integer idIndikator);