Merge pull request #37125 from frappe/mergify/bp/version-14-hotfix/pr-33502

feat: Toggle display of Account Balance in Chart of Accounts (backport #33502)
This commit is contained in:
ruthra kumar
2023-09-18 11:08:51 +05:30
committed by GitHub
2 changed files with 44 additions and 26 deletions

View File

@@ -56,6 +56,9 @@ frappe.treeview_settings["Account"] = {
accounts = nodes; accounts = nodes;
} }
frappe.db.get_single_value("Accounts Settings", "show_balance_in_coa").then((value) => {
if(value) {
const get_balances = frappe.call({ const get_balances = frappe.call({
method: 'erpnext.accounts.utils.get_account_balances', method: 'erpnext.accounts.utils.get_account_balances',
args: { args: {
@@ -88,6 +91,8 @@ frappe.treeview_settings["Account"] = {
} }
} }
}); });
}
});
}, },
add_tree_node: 'erpnext.accounts.utils.add_ac', add_tree_node: 'erpnext.accounts.utils.add_ac',
menu_items:[ menu_items:[

View File

@@ -66,7 +66,9 @@
"report_settings_sb", "report_settings_sb",
"banking_tab", "banking_tab",
"enable_party_matching", "enable_party_matching",
"enable_fuzzy_matching" "enable_fuzzy_matching",
"tab_break_dpet",
"show_balance_in_coa"
], ],
"fields": [ "fields": [
{ {
@@ -416,6 +418,17 @@
"fieldname": "ignore_account_closing_balance", "fieldname": "ignore_account_closing_balance",
"fieldtype": "Check", "fieldtype": "Check",
"label": "Ignore Account Closing Balance" "label": "Ignore Account Closing Balance"
},
{
"fieldname": "tab_break_dpet",
"fieldtype": "Tab Break",
"label": "Chart Of Accounts"
},
{
"default": "1",
"fieldname": "show_balance_in_coa",
"fieldtype": "Check",
"label": "Show Balances in Chart Of Accounts"
} }
], ],
"icon": "icon-cog", "icon": "icon-cog",