public class CustomerAgingReportDaoOjb extends org.kuali.rice.core.framework.persistence.ojb.dao.PlatformAwareDaoBaseOjb implements CustomerAgingReportDao
| Constructor and Description |
|---|
CustomerAgingReportDaoOjb() |
| Modifier and Type | Method and Description |
|---|---|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findAppliedAmountByAccount(String chart,
String account,
Date begin,
Date end)
This method generates a database query and retrieves the total applied amount of all open, approved invoices for the given
chart and account, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findAppliedAmountByBillingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total applied amount of all open, approved invoices for the given
billing chart and org codes, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findAppliedAmountByProcessingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total applied amount of all open, approved invoices for the given
processing chart and org codes, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findDiscountAmountByAccount(String chart,
String account,
Date begin,
Date end)
This method generates a database query and retrieves the total discount amount of all open, approved invoices for the given
chart and account, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findDiscountAmountByBillingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total discount amount of all open, approved invoices for the given
billing chart and org codes, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findDiscountAmountByProcessingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total discount amount of all open, approved invoices for the given
processing chart and org codes, which have billing dates within the given date range.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findInvoiceAmountByAccount(String chart,
String account,
Date begin,
Date end)
This method generates a database query and retrieves the total of all invoices for the given chart and account,
which have billing dates within the given date range, for which there is an outstanding balance due.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findInvoiceAmountByBillingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total of all invoices for the given billing chart and org codes,
which have billing dates within the given date range, for which there is an outstanding balance due.
|
HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> |
findInvoiceAmountByProcessingChartAndOrg(String chart,
String org,
Date begin,
Date end)
This method generates a database query and retrieves the total of all invoices for the given processing chart and org codes,
which have billing dates within the given date range, for which there is an outstanding balance due.
|
org.kuali.rice.core.api.util.type.KualiDecimal |
findWriteOffAmountByCustomerNumber(String customerNumber)
This method returns the total of writeoff amount for the particular customer
|
getDbPlatform, setDbPlatformpublic CustomerAgingReportDaoOjb()
public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findInvoiceAmountByProcessingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindInvoiceAmountByProcessingChartAndOrg in interface CustomerAgingReportDaochart - Processing chart code for the invoices being retrieved.org - Processing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoice balances due.end - Ending date of the date range used to find invoice balances due.CustomerAgingReportDao.findInvoiceAmountByProcessingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findAppliedAmountByProcessingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindAppliedAmountByProcessingChartAndOrg in interface CustomerAgingReportDaochart - Processing chart code for the invoices being retrieved.org - Processing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoices.end - Ending date of the date range used to find invoices.CustomerAgingReportDao.findAppliedAmountByProcessingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findDiscountAmountByProcessingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindDiscountAmountByProcessingChartAndOrg in interface CustomerAgingReportDaochart - Processing chart code for the invoices being retrieved.org - Processing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoices.end - Ending date of the date range used to find invoices.CustomerAgingReportDao.findDiscountAmountByProcessingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findInvoiceAmountByBillingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindInvoiceAmountByBillingChartAndOrg in interface CustomerAgingReportDaochart - Billing chart code for the invoices being retrieved.org - Billing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoice balances due.end - Ending date of the date range used to find invoice balances due.CustomerAgingReportDao.findInvoiceAmountByBillingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findAppliedAmountByBillingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindAppliedAmountByBillingChartAndOrg in interface CustomerAgingReportDaochart - Billing chart code for the invoices being retrieved.org - Billing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoices.end - Ending date of the date range used to find invoices.CustomerAgingReportDao.findAppliedAmountByBillingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findDiscountAmountByBillingChartAndOrg(String chart, String org, Date begin, Date end)
CustomerAgingReportDaofindDiscountAmountByBillingChartAndOrg in interface CustomerAgingReportDaochart - Billing chart code for the invoices being retrieved.org - Billing org code for the invoices being retrieved.begin - Beginning date of the date range used to find invoices.end - Ending date of the date range used to find invoices.CustomerAgingReportDao.findDiscountAmountByBillingChartAndOrg(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findInvoiceAmountByAccount(String chart, String account, Date begin, Date end)
CustomerAgingReportDaofindInvoiceAmountByAccount in interface CustomerAgingReportDaochart - chart code for the invoices being retrieved.account - account number for the invoices being retrieved.begin - Beginning date of the date range used to find invoice balances due.end - Ending date of the date range used to find invoice balances due.CustomerAgingReportDao.findInvoiceAmountByAccount(java.lang.String, java.lang.String,
java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findAppliedAmountByAccount(String chart, String account, Date begin, Date end)
CustomerAgingReportDaofindAppliedAmountByAccount in interface CustomerAgingReportDaochart - chart code for the invoices being retrieved.account - account number for the invoices being retrieved.begin - Beginning date of the date range used to find invoice balances due.end - Ending date of the date range used to find invoice balances due.CustomerAgingReportDao.findAppliedAmountByAccount(java.lang.String, java.lang.String,
java.sql.Date, java.sql.Date)public HashMap<String,org.kuali.rice.core.api.util.type.KualiDecimal> findDiscountAmountByAccount(String chart, String account, Date begin, Date end)
CustomerAgingReportDaofindDiscountAmountByAccount in interface CustomerAgingReportDaochart - chart code for the invoices being retrieved.account - account number for the invoices being retrieved.begin - Beginning date of the date range used to find invoice balances due.end - Ending date of the date range used to find invoice balances due.CustomerAgingReportDao.findDiscountAmountByAccount(java.lang.String,
java.lang.String, java.sql.Date, java.sql.Date)public org.kuali.rice.core.api.util.type.KualiDecimal findWriteOffAmountByCustomerNumber(String customerNumber)
CustomerAgingReportDaofindWriteOffAmountByCustomerNumber in interface CustomerAgingReportDaocustomerNumber - customerNumber for which writeoff amount should be fetchedCustomerAgingReportDao.findWriteOffAmountByCustomerNumber(java.lang.String)Copyright © 2004–2015 The Kuali Foundation. All rights reserved.