001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.endow.report.service;
017
018 import java.util.List;
019
020 import org.kuali.kfs.module.endow.report.util.TransactionStatementReportDataHolder;
021
022 public interface TransactionStatementReportService extends EndowmentReportService {
023
024 /**
025 * Gets the trial balance data using selected kemids
026 *
027 * @param kemids
028 * @param beginningDate
029 * @param endigDate
030 * @param endownmentOption
031 * @param closedIndicator
032 * @return
033 */
034 public List<TransactionStatementReportDataHolder> getTransactionStatementReportsByKemidByIds(List<String> kemids, String beginningDate, String endigDate, String endownmentOption, String closedIndicator);
035
036 /**
037 * Gets the trial balance data for all kemids
038 *
039 * @param beginningDate
040 * @param endigDate
041 * @param endownmentOption
042 * @param closedIndicator
043 * @return
044 */
045 public List<TransactionStatementReportDataHolder> getTransactionStatementReportForAllKemids(String beginningDate, String endigDate, String endownmentOption, String closedIndicator);
046
047 /**
048 * Gets the trial balance data using selected criteria
049 *
050 * @param benefittingOrganziationCampuses
051 * @param benefittingOrganziationCharts
052 * @param benefittingOrganziations
053 * @param typeCodes
054 * @param purposeCodes
055 * @param combineGroupCodes
056 * @param beginningDate
057 * @param endigDate
058 * @param endowmnetOption
059 * @param closedIndicator
060 * @return
061 */
062 public List<TransactionStatementReportDataHolder> getTransactionStatementReportsByOtherCriteria(
063 List<String> benefittingOrganziationCampuses,
064 List<String> benefittingOrganziationCharts,
065 List<String> benefittingOrganziations,
066 List<String> typeCodes,
067 List<String> purposeCodes,
068 List<String> combineGroupCodes,
069 String beginningDate,
070 String endigDate,
071 String endowmnetOption,
072 String closedIndicator);
073 }