getResidenceApplianceInquiryForm().getNotesAboutApplianceForResidence());
}
protected void fillOriginInformation() {
final PrecedentDegreeInformation precedentDegreeInformation = getStudentCandidacy().getPrecedentDegreeInformation();
final PersonalIngressionData personalData = getOrCreatePersonalIngressionData(precedentDegreeInformation);
precedentDegreeInformation.setConclusionGrade(getOriginInformationForm().getConclusionGrade());
precedentDegreeInformation.setDegreeDesignation(getOriginInformationForm().getDegreeDesignation());
precedentDegreeInformation.setSchoolLevel(getOriginInformationForm().getSchoolLevel());
if (getOriginInformationForm().getSchoolLevel() == SchoolLevelType.OTHER) {
precedentDegreeInformation.setOtherSchoolLevel(getOriginInformationForm().getOtherSchoolLevel());
}
Unit institution = getOriginInformationForm().getInstitution();
if (institution == null) {
institution = UnitUtils.readExternalInstitutionUnitByName(getOriginInformationForm().getInstitutionName());
if (institution == null) {
institution = Unit.createNewNoOfficialExternalInstitution(getOriginInformationForm().getInstitutionName());
}
}
precedentDegreeInformation.setInstitution(institution);
precedentDegreeInformation.setConclusionYear(getOriginInformationForm().getConclusionYear());
precedentDegreeInformation.setCountry(getOriginInformationForm().getCountryWhereFinishedPreviousCompleteDegree());
if ((getOriginInformationForm().getSchoolLevel() != null)
&& getOriginInformationForm().getSchoolLevel().isHighSchoolOrEquivalent()) {
precedentDegreeInformation.setCountryHighSchool(getOriginInformationForm()
.getCountryWhereFinishedPreviousCompleteDegree());
}
personalData.setHighSchoolType(getOriginInformationForm().getHighSchoolType());
}