2
0
mirror of https://github.com/frappe/erpnext.git synced 2024-06-12 07:04:00 +00:00
erpnext/erpnext/loan_management/doctype/loan/loan_dashboard.py
2022-03-28 18:52:46 +05:30

20 lines
417 B
Python

def get_data():
return {
"fieldname": "loan",
"non_standard_fieldnames": {
"Loan Disbursement": "against_loan",
"Loan Repayment": "against_loan",
},
"transactions": [
{"items": ["Loan Security Pledge", "Loan Security Shortfall", "Loan Disbursement"]},
{
"items": [
"Loan Repayment",
"Loan Interest Accrual",
"Loan Write Off",
"Loan Security Unpledge",
]
},
],
}