DrCr/drcr/config.py.example

30 lines
837 B
Plaintext
Raw Normal View History

2022-12-25 15:55:24 +11:00
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']
}
2023-01-02 21:00:09 +11:00
TAX_MAPPING = {
'Government allowances': [],
'Other work-related expenses': [],
'Salary and wages': [],
'Work-related self-education expenses': []
2023-01-02 21:00:09 +11:00
}