En-desarrollo #80

Open
jesus.pelaez wants to merge 11 commits from En-desarrollo into main
Showing only changes of commit d18f591df0 - Show all commits

View File

@ -100,9 +100,12 @@ public class RequestRegisterView extends VerticalLayout {
updateDatePickerMinValues();
});
endDatePicker.addValueChangeListener(event -> {
if (startDatePicker.getValue() != null) {
endDatePicker.setMin(startDatePicker.getValue());
}
LocalDate selectedDate = event.getValue();
if (selectedDate != null && (selectedDate.getDayOfWeek().getValue() == 6 || selectedDate.getDayOfWeek().getValue() == 7)) {
startDatePicker.setValue(selectedDate.minusDays(1));
endDatePicker.setValue(selectedDate.minusDays(1));
}
calculateDays();
});
@ -408,6 +411,12 @@ public class RequestRegisterView extends VerticalLayout {
if (balanceDays < 0.0) {
clearFields();
}
if (daysToBeTakenField.getValue() > 10
&& (categoryComboBox.getValue() == TimeOffRequestType.VACACION_GESTION_ANTERIOR
|| categoryComboBox.getValue() == TimeOffRequestType.VACACION_GESTION_ACTUAL)) {
clearFields();
}
}
}