From e0f98d720271943255b45f2fc36f42fb57ea9eb1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 21 Mar 2014 11:07:53 +0530 Subject: [PATCH] account properties file added --- .../chart_of_accounts/charts/account_properties.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 erpnext/accounts/doctype/chart_of_accounts/charts/account_properties.py diff --git a/erpnext/accounts/doctype/chart_of_accounts/charts/account_properties.py b/erpnext/accounts/doctype/chart_of_accounts/charts/account_properties.py new file mode 100644 index 0000000000..021b9d8732 --- /dev/null +++ b/erpnext/accounts/doctype/chart_of_accounts/charts/account_properties.py @@ -0,0 +1,13 @@ +account_properties = { + "Deutscher Kontenplan SKR03": { + "Bilanzkonten": { + "report_type": "Balance Sheet", + }, + "Gewinn u. Verlust": { + "report_type": "Profit and Loss", + }, + "Vortrags- Kapital- und Statistische Konten": { + "report_type": "Balance Sheet" + } + } +} \ No newline at end of file