Package org.fenixedu.academic.domain.phd.conclusion

Examples of org.fenixedu.academic.domain.phd.conclusion.PhdConclusionProcess


        return information.getMaxStudyPlanEctsCredits().add(information.getMaxThesisEctsCredits()).longValue();
    }

    @Override
    public DegreeOfficialPublication getDegreeOfficialPublication() {
        PhdConclusionProcess lastConclusionProcess = getPhdIndividualProgramProcess().getLastConclusionProcess();

        DateTime conclusionDate = null;
        if (!getPhdIndividualProgramProcess().getStudyPlan().isExempted()) {
            Registration registration = getPhdIndividualProgramProcess().getRegistration();
            conclusionDate = registration.getConclusionDateForBolonha().toDateMidnight().toDateTime();
        } else {
            conclusionDate = lastConclusionProcess.getConclusionDate().toDateMidnight().toDateTime();
        }

        return getPhdIndividualProgramProcess().getPhdProgram().getDegree().getOfficialPublication(conclusionDate);
    }
View Full Code Here


        if (!getPhdIndividualProgramProcess().getStudyPlan().isExempted()) {
            Registration registration = getPhdIndividualProgramProcess().getRegistration();
            conclusionDate = registration.getConclusionDateForBolonha().toDateMidnight().toLocalDate();
        } else {
            PhdConclusionProcess conclusionProcess = getPhdIndividualProgramProcess().getLastConclusionProcess();
            conclusionDate = conclusionProcess.getConclusionDate();
        }

        PhdProgram phdProgram = getPhdIndividualProgramProcess().getPhdProgram();
        PhdProgramInformation information = phdProgram.getPhdProgramInformationByDate(conclusionDate);
        return information;
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.phd.conclusion.PhdConclusionProcess

Copyright © 2018 www.massapicom. 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.