mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 17:04:47 +00:00
test: Loan entries in Bank Reco Statement report
This commit is contained in:
@@ -0,0 +1,40 @@
|
|||||||
|
# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
from erpnext.accounts.doctype.bank_transaction.test_bank_transaction import (
|
||||||
|
create_loan_and_repayment,
|
||||||
|
)
|
||||||
|
from erpnext.accounts.report.bank_reconciliation_statement.bank_reconciliation_statement import (
|
||||||
|
execute,
|
||||||
|
)
|
||||||
|
from erpnext.loan_management.doctype.loan.test_loan import create_loan_accounts
|
||||||
|
|
||||||
|
|
||||||
|
class TestBankReconciliationStatement(FrappeTestCase):
|
||||||
|
def setUp(self):
|
||||||
|
for dt in [
|
||||||
|
"Loan Repayment",
|
||||||
|
"Loan Disbursement",
|
||||||
|
"Journal Entry",
|
||||||
|
"Journal Entry Account",
|
||||||
|
"Payment Entry",
|
||||||
|
]:
|
||||||
|
frappe.db.delete(dt)
|
||||||
|
|
||||||
|
def test_loan_entries_in_bank_reco_statement(self):
|
||||||
|
create_loan_accounts()
|
||||||
|
repayment_entry = create_loan_and_repayment()
|
||||||
|
|
||||||
|
filters = frappe._dict(
|
||||||
|
{
|
||||||
|
"company": "Test Company",
|
||||||
|
"account": "Payment Account - _TC",
|
||||||
|
"report_date": "2018-10-30",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
result = execute(filters)
|
||||||
|
|
||||||
|
self.assertEqual(result[1][0].payment_entry, repayment_entry.name)
|
||||||
Reference in New Issue
Block a user