#IRP-792 Add Fixed Assets and Accounting Reports to Reports Subsystem…#2929
Open
#IRP-792 Add Fixed Assets and Accounting Reports to Reports Subsystem…#2929
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds two new report subsystems (Fixed Assets and Accounting) to the Reports subsystem, along with their associated command handlers for opening various reports.
- Adds "Fixed Assets" subsystem with 4 reports (transfer cost, inventory book, depreciation statement, book value)
- Adds "Accounting" subsystem with 5 reports (trial balance, trial balance by account, account card, account analysis, P&L report)
- Registers all 9 common commands in the main configuration
Reviewed changes
Copilot reviewed 24 out of 24 changed files in this pull request and generated 13 comments.
Show a summary per file
| File | Description |
|---|---|
| IRP/src/Subsystems/Reports/Reports.mdo | Registers FixedAssets and Accounting as new subsystems under Reports |
| IRP/src/Subsystems/Reports/Subsystems/FixedAssets/FixedAssets.mdo | Defines FixedAssets subsystem with 4 report commands |
| IRP/src/Subsystems/Reports/Subsystems/FixedAssets/CommandInterface.cmi | Command interface definition for FixedAssets subsystem |
| IRP/src/Subsystems/Reports/Subsystems/Accounting/Accounting.mdo | Defines Accounting subsystem with 5 report commands |
| IRP/src/Subsystems/Reports/Subsystems/Accounting/CommandInterface.cmi | Command interface definition for Accounting subsystem |
| IRP/src/Configuration/Configuration.mdo | Registers all 9 new common commands in the main configuration |
| IRP/src/CommonCommands/OpernReport_A0013_AccountAnalysis/* | Command definition and handler for Account Analysis report (contains naming typo) |
| IRP/src/CommonCommands/OpenReport_R8510B_BookValueOfFixedAsset/* | Command definition and handler for Book Value report (contains incorrect report reference) |
| IRP/src/CommonCommands/OpenReport_F0012_DepreciationStatement/* | Command definition and handler for Depreciation Statement report |
| IRP/src/CommonCommands/OpenReport_F0011_InventoryBook/* | Command definition and handler for Inventory Book report |
| IRP/src/CommonCommands/OpenReport_F0010_FixedAssetsTransferCost/* | Command definition and handler for Fixed Assets Transfer Cost report |
| IRP/src/CommonCommands/OpenReport_A0014_AccountingPLReport/* | Command definition and handler for Accounting P&L Report |
| IRP/src/CommonCommands/OpenReport_A0012_AccountCard/* | Command definition and handler for Account Card report |
| IRP/src/CommonCommands/OpenReport_A0011_TrialBalanceByAccount/* | Command definition and handler for Trial Balance by Account report |
| IRP/src/CommonCommands/OpenReport_A0010_TrialBalance/* | Command definition and handler for Trial Balance report |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
IRP/src/CommonCommands/OpenReport_F0011_InventoryBook/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_F0010_FixedAssetsTransferCost/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_A0014_AccountingPLReport/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_A0012_AccountCard/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_R8510B_BookValueOfFixedAsset/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_A0011_TrialBalanceByAccount/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpenReport_A0010_TrialBalance/CommandModule.bsl
Outdated
Show resolved
Hide resolved
IRP/src/Subsystems/Reports/Subsystems/Accounting/Accounting.mdo
Outdated
Show resolved
Hide resolved
IRP/src/CommonCommands/OpernReport_A0013_AccountAnalysis/OpernReport_A0013_AccountAnalysis.mdo
Outdated
Show resolved
Hide resolved
…odule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…t/CommandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…mandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…/CommandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…CommandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ndModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…/CommandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…dule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…CommandModule.bsl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…Report_A0013_AccountAnalysis.mdo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
… 1.1