Package org.fenixedu.academic.dto.accounting

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


    }

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

        request.setAttribute("depositAmountBean", new DepositAmountBean(getEvent(request)));

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


    }

    public ActionForward depositAmount(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) throws FenixServiceException {

        final DepositAmountBean renderedObject = getRenderedObject("depositAmountBean");
        try {
            DepositAmountOnEvent.run(renderedObject);
        } catch (DomainException e) {
            addActionMessage(request, e.getKey(), e.getArgs());
View Full Code Here

public class EntryTypeForDepositProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        final DepositAmountBean depositAmountBean = (DepositAmountBean) source;

        return depositAmountBean.getEvent().getPossibleEntryTypesForDeposit();

    }
View Full Code Here

TOP

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

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.