From 2d3b5093c98421d82640e8407456055b9c8f3b23 Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sun, 25 Dec 2022 15:55:24 +1100 Subject: [PATCH] Add example config.py --- drcr/config.py.example | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 drcr/config.py.example diff --git a/drcr/config.py.example b/drcr/config.py.example new file mode 100644 index 0000000..8c34cca --- /dev/null +++ b/drcr/config.py.example @@ -0,0 +1,22 @@ +COA_MAPPING = { + 'Accounts Payable': 'Accounts payable', + 'Accounts Receivable': 'Accounts receivable', + 'Cash at Bank': 'Cash and cash equivalents', + 'Depreciation': 'Depreciation', + 'Land': 'Property, plant and equipment', + 'Opening Balances': 'Accumulated surplus (deficit)', + 'Operating Costs': 'Operating costs', + 'Purchases': 'Purchases' +} + +BALANCE_SHEET_MAPPING = { + 'Current assets': ['Accounts receivable', 'Cash and cash equivalents'], + 'Non-current assets': ['Property, plant and equipment'], + 'Current liabilities': ['Accounts payable'], + 'Non-current liabilities': [] +} + +INCOME_STATEMENT_MAPPING = { + 'Income': ['Sales'], + 'Expenses': ['Operating costs', 'Purchases'] +}