Add example config.py

This commit is contained in:
RunasSudo 2022-12-25 15:55:24 +11:00
parent 28376de4a7
commit 2d3b5093c9
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 22 additions and 0 deletions

22
drcr/config.py.example Normal file
View File

@ -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']
}