mirror of
https://github.com/odoocker/odoocker
synced 2025-11-04 15:19:22 +01:00
added report_url module
This commit is contained in:
24
odoo/extra-addons/report_url/__manifest__.py
Normal file
24
odoo/extra-addons/report_url/__manifest__.py
Normal file
@@ -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 <yhaelopez@gmail.com>'
|
||||
],
|
||||
'depends': [
|
||||
'base'
|
||||
],
|
||||
'data': [
|
||||
'data/ir_config_parameter.xml'
|
||||
],
|
||||
'application': False,
|
||||
'installable': True,
|
||||
'auto_install': True
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- When initializing Odoo through Docker this parameter is missing. -->
|
||||
<record id="report_url" model="ir.config_parameter">
|
||||
<field name="key">report.url</field>
|
||||
<field name="value">http://127.0.0.1:8069</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user