Examples of AcademicEvent


Examples of org.fenixedu.academic.domain.accounting.AcademicEvent

    @Override
    protected Money subtractFromExemptions(Event event, DateTime when, boolean applyDiscount, Money amountToPay) {

        if (event instanceof AcademicEvent) {
            final AcademicEvent requestEvent = (AcademicEvent) event;
            if (requestEvent.hasAcademicEventExemption()) {
                amountToPay = amountToPay.subtract(requestEvent.getAcademicEventExemption().getValue());
            }

            return amountToPay.isPositive() ? amountToPay : Money.ZERO;
        }
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.