diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 3015f80..cb3125a 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190701.0 \ No newline at end of file +12.0.20190714.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 3830c74..8733dee 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo12-addon-stock_picking_comment_template', 'odoo12-addon-stock_picking_report_valued', + 'odoo12-addon-stock_report_quantity_by_location', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/stock_report_quantity_by_location/odoo/addons/stock_report_quantity_by_location b/setup/stock_report_quantity_by_location/odoo/addons/stock_report_quantity_by_location new file mode 120000 index 0000000..86ae480 --- /dev/null +++ b/setup/stock_report_quantity_by_location/odoo/addons/stock_report_quantity_by_location @@ -0,0 +1 @@ +../../../../stock_report_quantity_by_location \ No newline at end of file diff --git a/setup/stock_report_quantity_by_location/setup.py b/setup/stock_report_quantity_by_location/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_report_quantity_by_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)