ItEr35S08CUAsignacionCalendarioLaboralRecursoItEr25S09: Fixed bug when the basic Configuration entity does not exist.
This commit is contained in:
parent
c12421d8e7
commit
da1a680032
1 changed files with 7 additions and 1 deletions
|
|
@ -80,7 +80,13 @@ public class ConfigurationModel implements IConfigurationModel {
|
|||
}
|
||||
|
||||
private void forceLoad(Configuration configuration) {
|
||||
configuration.getDefaultCalendar().getName();
|
||||
forceLoad(configuration.getDefaultCalendar());
|
||||
}
|
||||
|
||||
private void forceLoad(BaseCalendar calendar) {
|
||||
if (calendar != null) {
|
||||
calendar.getName();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue