-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Subscription ID on UI Wallet Create Mutation Sidebar Simplification
- Loading branch information
Showing
3 changed files
with
3,017 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,6 @@ | |
Django Ledger created by Miguel Sanda <[email protected]>. | ||
Copyright© EDMA Group Inc licensed under the GPLv3 Agreement. | ||
Contributions to this module: | ||
* Miguel Sanda <[email protected]> | ||
* Pranav P Tulshyan <[email protected]> | ||
This is the base Chart of Accounts that has all the possible accounts that are useful for the preparation of the | ||
Financial Statements. A user may choose to use the default CoA at the creation of each EntityModel but it is not | ||
required. The default CoA is intended to provide a QuickStart solution for most use cases. | ||
|
@@ -14,8 +10,10 @@ | |
1. Assets: | ||
2. Liabilities | ||
3. Shareholder's Equity | ||
4. Expenses | ||
5. Revenue | ||
4. Income | ||
5. COGS | ||
6. Expenses | ||
The Django Ledger Default Chart of Accounts must include the following fields: | ||
* Code - String | ||
|
@@ -75,15 +73,16 @@ | |
6040 ex_regular debit Bad Debt root_expenses | ||
6050 ex_regular debit Bank Charges root_expenses | ||
6060 ex_regular debit Commission Expense root_expenses | ||
6080 ex_regular debit Employee Benefits root_expenses | ||
6080 ex_regular debit Employee Benefits root_expenses | ||
6081 ex_regular debit Employee Wages root_expenses | ||
6090 ex_regular debit Freight root_expenses | ||
6110 ex_regular debit Gifts root_expenses | ||
6120 ex_regular debit Insurance root_expenses | ||
6140 ex_regular debit Professional Fees root_expenses | ||
6150 ex_regular debit License Expense root_expenses | ||
6170 ex_regular debit Maintenance Expense root_expenses | ||
6180 ex_regular debit Meals & Entertainment root_expenses | ||
6190 ex_regular debit Office Expense root_expenses | ||
6190 ex_regular debit Office Expense root_expenses | ||
6220 ex_regular debit Printing root_expenses | ||
6230 ex_regular debit Postage root_expenses | ||
6240 ex_regular debit Rent root_expenses | ||
|
@@ -262,6 +261,8 @@ | |
'parent': None}, | ||
{'code': '6080', 'role': roles.EXPENSE_OPERATIONAL, 'balance_type': 'debit', 'name': 'Employee Benefits', | ||
'parent': None}, | ||
{'code': '6081', 'role': roles.EXPENSE_OPERATIONAL, 'balance_type': 'debit', 'name': 'Employee Wages', | ||
'parent': None}, | ||
{'code': '6090', 'role': roles.EXPENSE_OPERATIONAL, 'balance_type': 'debit', 'name': 'Freight', 'parent': None}, | ||
{'code': '6110', 'role': roles.EXPENSE_OPERATIONAL, 'balance_type': 'debit', 'name': 'Gifts', 'parent': None}, | ||
{'code': '6120', 'role': roles.EXPENSE_OPERATIONAL, 'balance_type': 'debit', 'name': 'Insurance', 'parent': None}, | ||
|
Oops, something went wrong.