diff --git a/report_context/readme/USAGE.rst b/report_context/readme/USAGE.rst index 74d4d5f17..04de1594d 100644 --- a/report_context/readme/USAGE.rst +++ b/report_context/readme/USAGE.rst @@ -2,7 +2,7 @@ To configure this module, you need to: * Enter Odoo in debug mode. * To add a specific context to a report, you should go to Settings -> - Reporting -> Reporting and look for the report you want to edit on the + Reports -> Reporting and look for the report you want to edit on the list. You will see that now they contain a new field called Context Value , where you will be able to add all the desired context parameters. * Go to Settings -> Parameters -> System Parameters. On the system diff --git a/setup/report_context/odoo/addons/report_context b/setup/report_context/odoo/addons/report_context new file mode 120000 index 000000000..e0ba2c531 --- /dev/null +++ b/setup/report_context/odoo/addons/report_context @@ -0,0 +1 @@ +../../../../report_context \ No newline at end of file diff --git a/setup/report_context/setup.py b/setup/report_context/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/report_context/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)