Package org.fenixedu.academic.domain.accounting.events

Examples of org.fenixedu.academic.domain.accounting.events.EnrolmentOutOfPeriodEvent


    protected Money subtractFromExemptions(Event event, DateTime when, boolean applyDiscount, Money amountToPay) {
        return amountToPay;
    }

    private Integer calculatNumberOfDays(Event event) {
        final EnrolmentOutOfPeriodEvent enrolmentOutOfPeriodEvent = ((EnrolmentOutOfPeriodEvent) event);
        final Integer result = enrolmentOutOfPeriodEvent.getNumberOfDelayDays() - 1;

        return result < 0 ? 0 : result;
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.events.EnrolmentOutOfPeriodEvent

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.