-
Notifications
You must be signed in to change notification settings - Fork 230
feat: Template for P&L and BS of Schedule III #3993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Abdeali099
wants to merge
15
commits into
develop
Choose a base branch
from
Abdeali/schedule-III
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8549b97
chore: add initial financial report template files
Abdeali099 33ae236
feat: add standard profit and loss financial report template for Sche…
Abdeali099 85dcc38
feat: add standard balance sheet template for Schedule III
Abdeali099 0862ec4
refactor: Account Categories
Abdeali099 525f075
chore: fix linter
Abdeali099 c93a3b4
refactor: update display names for balance sheet sections
Abdeali099 17dd248
fix: patch for financial report templates
Abdeali099 8857b62
chore: use erpnext's account categories-WIP
Abdeali099 5bd93a8
fix: update balance sheet template
Abdeali099 cb0b027
chore: remove empty account categories JSON file
Abdeali099 94bef9c
fix: update advanced filtering and calculation formulas in financial …
Abdeali099 79bb4d3
fix: adjust balance types and calculation formulas in financial repor…
Abdeali099 37a5175
fix: refine calculation formulas in financial report template
Abdeali099 823136b
fix: use account category other receivables
vorasmit ae54245
Merge branch 'develop' into Abdeali/schedule-III
Abdeali099 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
india_compliance/income_tax_india/financial_report_template/__init__.py
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # Copyright (c) 2026, Resilient Tech and contributors | ||
| # For license information, please see license.txt |
74 changes: 74 additions & 0 deletions
74
india_compliance/income_tax_india/financial_report_template/account_categories.json
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| [ | ||
| { | ||
| "account_category_name": "Capital Work in Progress", | ||
| "description": "Assets under construction or development that are not yet ready for intended use. Examples: Buildings under construction, plant installation in progress, software under development." | ||
| }, | ||
| { | ||
| "account_category_name": "Deferred Tax Assets", | ||
| "description": "Future tax benefits arising from temporary differences, unused tax losses, and unused tax credits. Examples: Deferred tax asset on depreciation timing difference, carried forward losses." | ||
| }, | ||
| { | ||
| "account_category_name": "Deferred Tax Liabilities", | ||
| "description": "Future tax obligations arising from temporary differences between accounting and tax treatment. Examples: Deferred tax liability on depreciation, revaluation surplus." | ||
| }, | ||
| { | ||
| "account_category_name": "Depreciation and Amortization", | ||
| "description": "Systematic allocation of depreciable amount of tangible and intangible assets over their useful life. Examples: Depreciation on buildings, machinery, vehicles, amortization of software, patents." | ||
| }, | ||
| { | ||
| "account_category_name": "Discontinuing Operations", | ||
Abdeali099 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "description": "Income and expenses from operations that are being discontinued or disposed of. Examples: Revenue from discontinued business segment, wind-down costs." | ||
| }, | ||
| { | ||
| "account_category_name": "Employee Benefits Expense", | ||
Abdeali099 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "description": "Costs related to employee compensation and benefits. Examples: Salaries and wages, provident fund contributions, gratuity, staff welfare, bonus." | ||
| }, | ||
| { | ||
| "account_category_name": "Exceptional Items", | ||
| "description": "Items of income or expense that arise from events or transactions that are clearly distinct from ordinary activities. Examples: Profit or loss on disposal of fixed assets, impairment losses, restructuring costs." | ||
| }, | ||
| { | ||
| "account_category_name": "Extraordinary Items", | ||
| "description": "Items of income or expense that arise from events or transactions that are clearly distinct from ordinary activities and are not expected to recur frequently or regularly. Examples: Natural disaster losses, expropriation of assets." | ||
| }, | ||
Abdeali099 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| { | ||
| "account_category_name": "Intangible Assets Under Development", | ||
| "description": "Intangible assets that are in the process of being developed and not yet ready for intended use. Examples: Software under development, patents pending registration." | ||
| }, | ||
| { | ||
| "account_category_name": "Long-Term Loans and Advances", | ||
| "description": "Non-current loans given and advances recoverable after one year. Examples: Security deposits, long-term employee loans, advances for capital goods." | ||
| }, | ||
| { | ||
| "account_category_name": "Long-term Provisions", | ||
| "description": "Present obligations beyond one year with uncertain timing/amount. Examples: Asset retirement obligations, environmental remediation, legal settlements." | ||
| }, | ||
| { | ||
| "account_category_name": "Money Received Against Share Warrants", | ||
| "description": "Amounts received from holders of share warrants that have not yet been converted into shares. Examples: Share warrant application money, convertible warrant deposits." | ||
| }, | ||
| { | ||
| "account_category_name": "Provisional Profit and Loss", | ||
| "description": "Provisional or interim profit and loss balance for the current period before period closing. Represents unclosed Income and Expense account balances on the Balance Sheet." | ||
| }, | ||
| { | ||
| "account_category_name": "Share Application Money", | ||
| "description": "Money received from applicants for shares that have not yet been allotted. Examples: Share application money pending allotment." | ||
| }, | ||
| { | ||
| "account_category_name": "Short-Term Loans and Advances", | ||
| "description": "Current loans given and advances recoverable within one year. Examples: Short-term employee advances, prepaid expenses, advance to suppliers." | ||
| }, | ||
| { | ||
| "account_category_name": "Tax on Discontinuing Operations", | ||
| "description": "Tax expense specifically attributable to discontinuing operations. Examples: Income tax on discontinued segment profits." | ||
| }, | ||
| { | ||
| "account_category_name": "Total Expenses", | ||
| "description": "All expense accounts across the entity for validation purposes. This is a catch-all category covering all root-type Expense accounts." | ||
| }, | ||
| { | ||
| "account_category_name": "Total Income", | ||
| "description": "All income accounts across the entity for validation purposes. This is a catch-all category covering all root-type Income accounts." | ||
| } | ||
Abdeali099 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ] | ||
2 changes: 2 additions & 0 deletions
2
...ome_tax_india/financial_report_template/standard_balance_sheet_(schedule_iii)/__init__.py
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # Copyright (c) 2026, Resilient Tech and contributors | ||
| # For license information, please see license.txt |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.