Package org.fenixedu.academic.domain.accounting

Examples of org.fenixedu.academic.domain.accounting.Discount


    }

    public ActionForward deleteDiscount(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {

        final Discount discount = getDomainObject(request, "discountOid");
        request.setAttribute("eventId", discount.getEvent().getExternalId());

        try {
            discount.delete();
        } catch (final DomainException e) {
            addActionMessage(request, e.getMessage(), e.getArgs());
        }

        return showPaymentsForEvent(mapping, actionForm, request, response);
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.Discount

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.