Package org.fenixedu.academic.dto.accounting

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


    }

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

        request.setAttribute("annulAccountingTransactionBean", new AnnulAccountingTransactionBean(getTransaction(request)));

        return mapping.findForward("annulTransaction");

    }
View Full Code Here


        return mapping.findForward("annulTransaction");
    }

    public ActionForward annulTransaction(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) throws FenixServiceException {
        final AnnulAccountingTransactionBean annulAccountingTransactionBean =
                (AnnulAccountingTransactionBean) getObjectFromViewState("annulAccountingTransactionBean");
        try {

            AnnulAccountingTransaction.run(annulAccountingTransactionBean);
        } catch (DomainExceptionWithLabelFormatter ex) {
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.accounting.AnnulAccountingTransactionBean

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.