Compare commits

..

No commits in common. "6f28b48c7af0df85d5561d947e91c712c1e23065" and "e63ba3c8b10f2e9d89a3f378d6fbb2e27fb83fbc" have entirely different histories.

View File

@ -2032,11 +2032,7 @@ public class PermohonanStatusPegawaiImpl implements PermohonanStatusPegawaiServi
// Cek Ketika Update Jatah Cuti Otomatis Apakah Mengirimkan Intervensi Cuti Apa Tidak
if (CommonUtil.isNullOrEmpty(vo.getIntervensiCuti())) {
JatahCutiDanIzin currentDataBaseJatahCuti = jatahCutiDanIzinDao.getJatahCuti(vo.getTahun().toString(), vo.getPegawai().getId(), kompIndexVoB.getId());
if (CommonUtil.isNullOrEmpty(currentDataBaseJatahCuti)) {
vo.setIntervensiCuti(0);
}else{
vo.setIntervensiCuti(currentDataBaseJatahCuti.getIntervensiCuti());
}
vo.setIntervensiCuti(currentDataBaseJatahCuti.getIntervensiCuti());
}
int todaysYear = Calendar.getInstance().get(Calendar.YEAR);