Package org.fenixedu.academic.domain.accounting.accountingTransactions

Examples of org.fenixedu.academic.domain.accounting.accountingTransactions.InstallmentAccountingTransaction


    }

    protected AccountingTransaction makeAccountingTransactionForInstallment(User responsibleUser, Event event, Account from,
            Account to, EntryType entryType, Money amount, Installment installment,
            AccountingTransactionDetailDTO transactionDetail) {
        return new InstallmentAccountingTransaction(responsibleUser, event, makeEntry(entryType, amount.negate(), from),
                makeEntry(entryType, amount, to), installment, makeAccountingTransactionDetail(transactionDetail));
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.accountingTransactions.InstallmentAccountingTransaction

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.