From e3da8ef5bf2b4a089cf8fb2bbed37eb660478c25 Mon Sep 17 00:00:00 2001 From: Yhael S Date: Tue, 29 Aug 2023 01:57:11 -0500 Subject: [PATCH] added report_url module --- odoo/__manifest__.example.py | 65 +++++++++++++++++++ odoo/extra-addons/report_url/__manifest__.py | 24 +++++++ .../report_url/data/ir_config_parameter.xml | 8 +++ 3 files changed, 97 insertions(+) create mode 100644 odoo/__manifest__.example.py create mode 100644 odoo/extra-addons/report_url/__manifest__.py create mode 100644 odoo/extra-addons/report_url/data/ir_config_parameter.xml diff --git a/odoo/__manifest__.example.py b/odoo/__manifest__.example.py new file mode 100644 index 0000000..d514518 --- /dev/null +++ b/odoo/__manifest__.example.py @@ -0,0 +1,65 @@ +{ + 'name': 'Module Name', + 'summary': 'Module Summary', + 'description': ''' + Multi-Line Module Description + Goes Here + ''', + 'version': '1.0.0', # (X.Y.Z.W) X: Odoo Version (not present), Y: Major Upgrade, Z: Bugfix, W: Minor Upgrade + 'category': 'Uncategorized', # Possible values: [https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml] + 'license': 'LGPL-3', + 'sequence': 100, # Order in which the module will be displayed + # Author, Pricing, Licensing, and Support Info + 'author': 'Your Company', + 'website': 'https://yourcompany.com', + 'maintainer': 'Your Company DevTeam', + 'contributors': [ + 'Name 1 ', + 'Name 2 ' + ], + 'price': 0.0, + 'currency': 'MXN', + 'support': 'your-email@yourcompany.com', + 'live_test_url': 'http://www.yourcompany.com/live_test', + # Technical Info + 'depends': [ + 'base', + # other dependent modules... + ], + 'external_dependencies': { + 'python': [ + # python packages... + ], + 'bin': [ + # binary packages... + ], + }, + 'data': [ + 'security/ir.model.access.csv' + 'views/view_file.xml', + # ... other xml, csv data files + ], + 'demo': [ + 'demo/demo_data.xml' + # ... other demo data files + ], + 'qweb': [ + 'static/src/xml/template.xml' + # ... other qweb templates + ], + 'assets': { + 'web.assets_backend': [ + 'module_name/static/src/js/file.js', + 'module_name/static/src/css/style.css' + # ... other assets + ], + 'web.assets_qweb': [ + 'module_name/static/src/xml/template.xml' + # ... other qweb templates + ], + }, + # Module Status + 'application': False, + 'installable': True, + 'auto_install': False +} diff --git a/odoo/extra-addons/report_url/__manifest__.py b/odoo/extra-addons/report_url/__manifest__.py new file mode 100644 index 0000000..12197d2 --- /dev/null +++ b/odoo/extra-addons/report_url/__manifest__.py @@ -0,0 +1,24 @@ +{ + 'name': 'Report URL', + 'summary': 'Adds Report URL to Odoo Container', + 'description': ''' + Odoo Containers doesn't come with report.url param out of the box, so we add it for you to work in Odoocker. + ''', + 'version': '1.0.0', + 'category': 'Technical', + 'license': 'LGPL-3', + 'author': 'Odoocker', + 'maintainer': 'Odoocker', + 'contributors': [ + 'Yhael S ' + ], + 'depends': [ + 'base' + ], + 'data': [ + 'data/ir_config_parameter.xml' + ], + 'application': False, + 'installable': True, + 'auto_install': True +} diff --git a/odoo/extra-addons/report_url/data/ir_config_parameter.xml b/odoo/extra-addons/report_url/data/ir_config_parameter.xml new file mode 100644 index 0000000..9e9fb65 --- /dev/null +++ b/odoo/extra-addons/report_url/data/ir_config_parameter.xml @@ -0,0 +1,8 @@ + + + + + report.url + http://127.0.0.1:8069 + +