| java.lang.Object org.kuali.module.gl.util.TransactionReport
TransactionReport | public class TransactionReport (Code) | | This class represents the functionality related to the generating the Transaction Report. The transaction report
shows the primary key from transactions and a list of messages for each one.
|
Inner Class :public static class PageHelper extends PdfPageEventHelper | |
Method Summary | |
public void | appendReport(Document document, Font headerFont, Font textFont, List<Transaction> errorSortedList, Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate) Appends the scrubber totals/statistics and error report to the given (iText) document object. | public void | generateReport(Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate, String title, String fileprefix, String destinationDirectory) | public void | generateReport(List<Transaction> errorSortedList, Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate, String title, String fileprefix, String destinationDirectory) |
TransactionReport | public TransactionReport()(Code) | | |
appendReport | public void appendReport(Document document, Font headerFont, Font textFont, List<Transaction> errorSortedList, Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate) throws DocumentException(Code) | | Appends the scrubber totals/statistics and error report to the given (iText) document object.
Parameters: document - the PDF document Parameters: headerFont - font for header Parameters: textFont - font for report text Parameters: errorSortedList - list of error'd transactions Parameters: reportErrors - map containing transactions and the errors associated with each transaction Parameters: reportSummary - list of summary objects Parameters: runDate - date report was run throws: DocumentException - |
generateReport | public void generateReport(Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate, String title, String fileprefix, String destinationDirectory)(Code) | | Generates transaction report
Parameters: reportErrors - map containing transactions and the errors associated with each transaction Parameters: reportSummary - list of summary objects Parameters: runDate - date report is run Parameters: title - title of report Parameters: fileprefix - file prefix of report file Parameters: destinationDirectory - destination of where report file will reside |
generateReport | public void generateReport(List<Transaction> errorSortedList, Map<Transaction, List<Message>> reportErrors, List<Summary> reportSummary, Date runDate, String title, String fileprefix, String destinationDirectory)(Code) | | Generates transaction report
Parameters: errorSortedList - list of error'd transactions Parameters: reportErrors - map containing transactions and the errors associated with each transaction Parameters: reportSummary - list of summary objects Parameters: runDate - date report is run Parameters: title - title of report Parameters: fileprefix - file prefix of report file Parameters: destinationDirectory - destination of where report file will reside |
|
|