Package org.fenixedu.academic.domain.accounting.events.serviceRequests

Examples of org.fenixedu.academic.domain.accounting.events.serviceRequests.PastDegreeDiplomaRequestEvent.depositAmount()


        if (isPayed(bean)) {
            PastDegreeDiplomaRequestEvent event =
                    new PastDegreeDiplomaRequestEvent(request.getAdministrativeOffice(), request.getPerson(), request,
                            bean.getPastPaymentAmount());

            event.depositAmount(Authenticate.getUser(), bean.getPastPaymentAmount(), createTransactionDetailDTO(bean));
        }
    }

    private static boolean isPayed(DocumentRequestCreateBean bean) {
        return bean.getPastPaymentAmount() != null && bean.getPastPaymentAmount().isPositive();
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.