diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index cb3125a..1dc8963 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190714.0 \ No newline at end of file +12.0.20190826.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 8733dee..c14149f 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_quantity_history_location', 'odoo12-addon-stock_report_quantity_by_location', ], classifiers=[ diff --git a/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location b/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location new file mode 120000 index 0000000..2f1a370 --- /dev/null +++ b/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location @@ -0,0 +1 @@ +../../../../stock_quantity_history_location \ No newline at end of file diff --git a/setup/stock_quantity_history_location/setup.py b/setup/stock_quantity_history_location/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_quantity_history_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)