Examples of DegreeCurricularPlanServiceAgreement


Examples of org.fenixedu.academic.domain.accounting.serviceAgreements.DegreeCurricularPlanServiceAgreement

        addCandidacyDocuments(new CandidacyDocument("second.habilitation.certificate"));
        addCandidacyDocuments(new CandidacyDocument("interest.letter"));

        final AdministrativeOffice administrativeOffice = executionDegree.getDegree().getAdministrativeOffice();
        new DFACandidacyEvent(administrativeOffice, person, this);
        new DegreeCurricularPlanServiceAgreement(person, executionDegree.getDegreeCurricularPlan().getServiceAgreementTemplate());
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.serviceAgreements.DegreeCurricularPlanServiceAgreement

        }
    }

    private void ensureServiceAgreement() {
        if (getDegreeCurricularPlanServiceAgreement() == null) {
            new DegreeCurricularPlanServiceAgreement(getPerson(),
                    DegreeCurricularPlanServiceAgreementTemplate.readByDegreeCurricularPlan(getStudentCurricularPlan()
                            .getDegreeCurricularPlan()));
        }
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.serviceAgreements.DegreeCurricularPlanServiceAgreement

        RoleType.grant(RoleType.CANDIDATE, person.getUser());
        RoleType.grant(RoleType.PERSON, person.getUser());

        Candidacy candidacy = CandidacyFactory.newCandidacy(degreeType, person, executionDegree, startDate);

        new DegreeCurricularPlanServiceAgreement(person, executionDegree.getDegreeCurricularPlan().getServiceAgreementTemplate());

        return candidacy;

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.