Package org.fenixedu.academic.domain.transactions

Examples of org.fenixedu.academic.domain.transactions.GratuityTransaction


    }

    public GratuityTransaction processAmount(final Person responsiblePerson, final Money amount, final DateTime whenRegistered,
            final PaymentType paymentType) {

        final GratuityTransaction transaction =
                new GratuityTransaction(amount.getAmount(), whenRegistered, paymentType, TransactionType.GRATUITY_ADHOC_PAYMENT,
                        responsiblePerson, getOrCreatePersonAccount(), this);

        updateRemainingValue();

        return transaction;
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.transactions.GratuityTransaction

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.