Examples of AcademicEventExemptionBean


Examples of org.fenixedu.academic.dto.accounting.AcademicEventExemptionBean

        return showExemptions(mapping, form, request, response);
    }

    public ActionForward prepareCreateAcademicEventExemption(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("exemptionBean", new AcademicEventExemptionBean((AcademicEvent) getEvent(request)));
        return mapping.findForward("createAcademicEventExemption");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.accounting.AcademicEventExemptionBean

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

        try {
            final AcademicEventExemptionBean bean = getRenderedObject("exemptionBean");
            AcademicEventExemption.create(getLoggedPerson(request), bean.getEvent(), bean.getValue(),
                    bean.getJustificationType(), bean.getDispatchDate(), bean.getReason());

        } catch (DomainExceptionWithLabelFormatter ex) {
            addActionMessage(request, ex.getKey(), solveLabelFormatterArgs(request, ex.getLabelFormatterArgs()));
            return prepareCreateAcademicEventExemptionInvalid(mapping, form, request, response);
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.