From df2a75ad1d2c9f9fb3db07bc593bf396500750f8 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 20 Jul 2016 11:25:15 +0530 Subject: [PATCH] Updated standard chart of accounts --- .../in_standard_chart_of_accounts.json | 87 +++++++------------ .../verified/standard_chart_of_accounts.py | 17 +++- 2 files changed, 44 insertions(+), 60 deletions(-) diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/in_standard_chart_of_accounts.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/in_standard_chart_of_accounts.json index 375828c572..c7a8045504 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/in_standard_chart_of_accounts.json +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/in_standard_chart_of_accounts.json @@ -37,19 +37,24 @@ "Capital Equipments": { "account_type": "Fixed Asset" }, - "Computers": { + "Electronic Equipments": { "account_type": "Fixed Asset" }, - "Furniture and Fixture": { + "Furnitures and Fixtures": { "account_type": "Fixed Asset" }, "Office Equipments": { "account_type": "Fixed Asset" }, - "Plant and Machinery": { + "Plants and Machineries": { "account_type": "Fixed Asset" }, - "Accumulated Depreciations": {} + "Buildings": { + "account_type": "Fixed Asset" + }, + "Accumulated Depreciations": { + "account_type": "Accumulated Depreciation" + } }, "Investments": { "is_group": 1 @@ -72,67 +77,37 @@ }, "Stock Adjustment": { "account_type": "Stock Adjustment" - }, - "account_type": "Expense Account" - }, - "account_type": "Expense Account" + } + } }, "Indirect Expenses": { - "Administrative Expenses": { - "account_type": "Expense Account" - }, - "Commission on Sales": { - "account_type": "Expense Account" - }, + "Administrative Expenses": {}, + "Commission on Sales": {}, "Depreciation": { - "account_type": "Expense Account" - }, - "Entertainment Expenses": { - "account_type": "Expense Account" + "account_type": "Depreciation" }, + "Entertainment Expenses": {}, "Freight and Forwarding Charges": { "account_type": "Chargeable" }, - "Legal Expenses": { - "account_type": "Expense Account" - }, - "Marketing Expenses": { - "account_type": "Chargeable" - }, - "Miscellaneous Expenses": { - "account_type": "Chargeable" - }, - "Office Maintenance Expenses": { - "account_type": "Expense Account" - }, - "Office Rent": { - "account_type": "Expense Account" - }, - "Postal Expenses": { - "account_type": "Expense Account" - }, - "Print and Stationary": { - "account_type": "Expense Account" - }, + "Legal Expenses": {}, + "Marketing Expenses": {}, + "Miscellaneous Expenses": {}, + "Office Maintenance Expenses": {}, + "Office Rent": {}, + "Postal Expenses": {}, + "Print and Stationary": {}, "Rounded Off": { - "account_type": "Expense Account" + "account_type": "Round Off" }, - "Salary": { - "account_type": "Expense Account" - }, - "Sales Expenses": { - "account_type": "Expense Account" - }, - "Telephone Expenses": { - "account_type": "Expense Account" - }, - "Travel Expenses": { - "account_type": "Expense Account" - }, - "Utility Expenses": { - "account_type": "Expense Account" - }, - "account_type": "Expense Account" + "Salary": {}, + "Sales Expenses": {}, + "Telephone Expenses": {}, + "Travel Expenses": {}, + "Utility Expenses": {}, + "Write Off": {}, + "Exchange Gain/Loss": {}, + "Gain/Loss on Asset Disposal": {} }, "root_type": "Expense" }, diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py index 386b229e69..5824704fb3 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py @@ -41,18 +41,24 @@ def get(): _("Capital Equipments"): { "account_type": "Fixed Asset" }, - _("Computers"): { + _("Electronic Equipments"): { "account_type": "Fixed Asset" }, - _("Furniture and Fixture"): { + _("Furnitures and Fixtures"): { "account_type": "Fixed Asset" }, _("Office Equipments"): { "account_type": "Fixed Asset" }, - _("Plant and Machinery"): { + _("Plants and Machineries"): { "account_type": "Fixed Asset" }, + _("Buildings"): { + "account_type": "Fixed Asset" + }, + _("Softwares"): { + "account_type": "Fixed Asset" + }, _("Accumulated Depreciation"): { "account_type": "Accumulated Depreciation" } @@ -109,7 +115,10 @@ def get(): _("Sales Expenses"): {}, _("Telephone Expenses"): {}, _("Travel Expenses"): {}, - _("Utility Expenses"): {} + _("Utility Expenses"): {}, + _("Write Off"): {}, + _("Exchange Gain/Loss"): {}, + _("Gain/Loss on Asset Disposal"): {} }, "root_type": "Expense" },