Package org.fenixedu.academic.dto.accounting.paymentPlan

Examples of org.fenixedu.academic.dto.accounting.paymentPlan.StandaloneInstallmentBean


        paymentPlanBean.setForPartialRegime(false);
        paymentPlanBean.setForStudentEnroledOnSecondSemesterOnly(false);
        paymentPlanBean.setDegreeCurricularPlans(Collections.singletonList(degreeCurricularPlan));

        request.setAttribute("paymentPlanEditor", paymentPlanBean);
        StandaloneInstallmentBean installmentBean = new StandaloneInstallmentBean(paymentPlanBean);

        installmentBean.setPenaltyAppliable(false);
        request.setAttribute("installmentEditor", installmentBean);

        request.setAttribute("degreeCurricularPlan", degreeCurricularPlan);

        return mapping.findForward("createDEAStandaloneEnrolmentGratuityPR");
View Full Code Here


            HttpServletResponse response) throws FenixServiceException {
        final DegreeCurricularPlan degreeCurricularPlan = getDegreeCurricularPlan(request);

        InstallmentBean installment = getInstallment();

        StandaloneInstallmentBean standaloneInstallment = (StandaloneInstallmentBean) installment;

        if (!installment.hasRequiredInformation()) {
            addActionMessage("installment", request,
                    "label.payments.postingRules.paymentPlan.information.to.create.installment.is.all.required");
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.accounting.paymentPlan.StandaloneInstallmentBean

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.