Examples of ReingressionPeriod


Examples of org.fenixedu.academic.domain.ReingressionPeriod

    }

    private static void createReingressionPeriodsForPreBolonhaDegrees(final ExecutionSemester executionSemester,
            final DegreeType degreeType, final Date startDate, final Date endDate, final List<DegreeCurricularPlan> dcpList) {
        for (final DegreeCurricularPlan degreeCurricularPlan : dcpList) {
            new ReingressionPeriod(degreeCurricularPlan, executionSemester, startDate, endDate);
        }
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.ReingressionPeriod

            new EnrolmentPeriodInImprovementOfApprovedEnrolment(degreeCurricularPlan, executionSemester, startDate, endDate);

        } else if (enrolmentPeriodType.isReingressionPeriod()) {

            new ReingressionPeriod(degreeCurricularPlan, executionSemester, startDate, endDate);

        } else {
            throw new Error("error.invalid.enrolment.period.class.name");
        }
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.ReingressionPeriod

    private boolean hasOpenEnrolmentPeriod(final DegreeCurricularPlan degreeCurricularPlan, final ExecutionYear executionYear,
            final DateTime requestDate) {

        for (final ExecutionSemester executionSemester : executionYear.getExecutionPeriodsSet()) {
            final ReingressionPeriod period = degreeCurricularPlan.getReingressionPeriod(executionSemester);
            if (period != null && period.containsDate(requestDate)) {
                return true;
            }
        }
        return false;
    }
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.