Package org.fenixedu.academic.dto.accounting.postingRule

Examples of org.fenixedu.academic.dto.accounting.postingRule.CreateStandaloneEnrolmentGratuityPRBean


    }

    public ActionForward prepareCreateGraduationStandaloneEnrolmentGratuityPR(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response) {

        final CreateGratuityPostingRuleBean bean = new CreateStandaloneEnrolmentGratuityPRBean();
        bean.setRule(StandaloneEnrolmentGratuityPR.class);

        request.setAttribute("createPostingRuleBean", bean);

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


    }

    public ActionForward createGraduationStandaloneEnrolmentGratuityPR(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response) {

        final CreateStandaloneEnrolmentGratuityPRBean bean = getRenderedObject("createPostingRuleBean");

        try {
            PostingRulesManager.createStandaloneGraduationGratuityPostingRule(bean);
        } catch (DomainException e) {
            addActionMessage(request, e.getKey(), e.getArgs());
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.accounting.postingRule.CreateStandaloneEnrolmentGratuityPRBean

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.