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.ar.report.service;
017
018
019 import java.io.File;
020 import java.sql.Date;
021 import java.util.List;
022
023 import org.kuali.kfs.module.ar.document.CustomerCreditMemoDocument;
024 import org.kuali.kfs.module.ar.document.CustomerInvoiceDocument;
025 import org.kuali.rice.kew.exception.WorkflowException;
026
027 /**
028 * The interface defines the methods that extract Labor Ledger records of the employees who were paid on a grant or cost shared
029 * during the selected reporting period.
030 */
031 public interface AccountsReceivableReportService {
032
033 public File generateInvoice(CustomerInvoiceDocument invoice);
034
035 public List<File> generateInvoicesByBillingOrg(String chartCode, String orgCode, Date date);
036
037 public List<File> generateInvoicesByProcessingOrg(String chartCode, String orgCode, Date date);
038
039 public List<File> generateInvoicesByInitiator(String initiator, java.sql.Date date);
040
041
042 public File generateCreditMemo(CustomerCreditMemoDocument creditMemo) throws WorkflowException;
043
044
045 public List<File> generateStatementByBillingOrg(String chartCode, String orgCode);
046
047 public List<File> generateStatementByAccount(String accountNumber);
048
049 public List<File> generateStatementByCustomer(String customerNumber);
050
051 }