Compare commits

..

No commits in common. "9b99394bfd0763ed32a8e925ca0cc20790678bdb" and "53424dfb4b902fd7b1556d66066a46a8b36cf9a8" 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);