Package org.fenixedu.academic.domain.accounting.postingRules.gratuity

Examples of org.fenixedu.academic.domain.accounting.postingRules.gratuity.GratuityWithPaymentPlanPR


            for (final DegreeCurricularPlan dcp : bean.getDegreeCurricularPlans()) {
                if (dcp.isPast()) {
                    continue;
                }
                deactivateExistingPostingRule(EventType.GRATUITY, bean.getStartDate(), dcp.getServiceAgreementTemplate());
                new GratuityWithPaymentPlanPR(bean.getStartDate(), null, dcp.getServiceAgreementTemplate());
            }

        } else if (bean.getRule() == PastDegreeGratuityPR.class) {

            for (final DegreeCurricularPlan dcp : bean.getDegreeCurricularPlans()) {
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.postingRules.gratuity.GratuityWithPaymentPlanPR

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.