| org.kuali.module.gl.batch.poster.EncumbranceCalculator
All known Subclasses: org.kuali.module.gl.batch.poster.impl.PostEncumbrance,
EncumbranceCalculator | public interface EncumbranceCalculator (Code) | | An interface which declares the methods needed to post a transaction against an encumbrance
|
findEncumbrance | public Encumbrance findEncumbrance(Collection encumbranceList, Transaction t)(Code) | | This method is used by the balance inquiry screens. It will take a list of selected encumbrances and a pending entry. It will
return the Encumbrance row that is affected by the transaction.
Parameters: encumbranceList - list of Encumbrance objects Parameters: t - A transaction the matching Encumbrance from the list or null if not applicable |
updateEncumbrance | public void updateEncumbrance(Transaction t, Encumbrance enc)(Code) | | This will update the amounts in an Encumbrance records based on the data in the transaction.
Parameters: t - the transaction to compare Parameters: enc - An encumbrance to update |
|
|