Package org.fenixedu.academic.domain.accounting.events.gratuity.exemption.penalty

Examples of org.fenixedu.academic.domain.accounting.events.gratuity.exemption.penalty.InstallmentPenaltyExemption


    }

    public InstallmentPenaltyExemption getInstallmentPenaltyExemptionFor(final Installment installment) {
        for (final Exemption exemption : getExemptionsSet()) {
            if (exemption instanceof InstallmentPenaltyExemption) {
                final InstallmentPenaltyExemption installmentPenaltyExemption = (InstallmentPenaltyExemption) exemption;
                if (installmentPenaltyExemption.getInstallment() == installment) {
                    return installmentPenaltyExemption;
                }
            }
        }
View Full Code Here


    @Atomic
    public static void run(final Person responsible, final CreateInstallmentPenaltyExemptionBean penaltyExemptionBean) {
        check(AcademicPredicates.MANAGE_STUDENT_PAYMENTS);
        for (final Installment installment : penaltyExemptionBean.getInstallments()) {
            new InstallmentPenaltyExemption(penaltyExemptionBean.getJustificationType(),
                    penaltyExemptionBean.getGratuityEventWithPaymentPlan(), responsible, installment,
                    penaltyExemptionBean.getReason(), penaltyExemptionBean.getDispatchDate());
        }
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.events.gratuity.exemption.penalty.InstallmentPenaltyExemption

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.