diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
| commit | 1ca3b3df3421961caec3b747a364071c80f5c7da (patch) | |
| tree | 6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /dynamic_accounts_report/__manifest__.py | |
| parent | b57188be371d36d96caac4b8d65a40745c0e972c (diff) | |
initial commit
Diffstat (limited to 'dynamic_accounts_report/__manifest__.py')
| -rw-r--r-- | dynamic_accounts_report/__manifest__.py | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/dynamic_accounts_report/__manifest__.py b/dynamic_accounts_report/__manifest__.py new file mode 100644 index 0000000..f496af6 --- /dev/null +++ b/dynamic_accounts_report/__manifest__.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) +# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see <http://www.gnu.org/licenses/>. +# +############################################################################# + +{ + 'name': 'Dynamic Financial Reports', + 'version': '14.0.1.2.3', + 'category': 'Accounting', + 'live_test_url': 'https://www.youtube.com/watch?v=gVQi9q9Rs-E&t=5s', + 'summary': """Dynamic Financial Reports with drill + down and filters– Community Edition""", + 'description': "Dynamic Financial Reports, DynamicFinancialReports, FinancialReport, Accountingreports, odoo reports, odoo" + "This module creates dynamic Accounting General Ledger, Trial Balance, Balance Sheet " + "Proft and Loss, Cash Flow Statements, Partner Ledger," + "Partner Ageing, Day book" + "Bank book and Cash book reports in Odoo 14 community edition.", + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['base', 'base_accounting_kit'], + 'data': [ + 'security/ir.model.access.csv', + 'views/templates.xml', + 'views/views.xml', + 'views/kit_menus.xml', + 'report/trial_balance.xml', + 'report/general_ledger.xml', + 'report/cash_flow_report.xml', + 'report/financial_report_template.xml', + 'report/partner_ledger.xml', + 'report/ageing.xml', + 'report/daybook.xml', + ], + 'qweb': [ + 'static/src/xml/general_ledger_view.xml', + 'static/src/xml/trial_balance_view.xml', + 'static/src/xml/cash_flow_view.xml', + 'static/src/xml/financial_reports_view.xml', + 'static/src/xml/partner_ledger_view.xml', + 'static/src/xml/ageing.xml', + 'static/src/xml/daybook.xml', + ], + 'license': 'LGPL-3', + 'images': ['static/description/banner.png'], + 'installable': True, + 'auto_install': False, + 'application': True, +} |
