diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 310349e..857420c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190611.0 \ No newline at end of file +11.0.20190617.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 4a08f9a..0c991a4 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -11,6 +11,7 @@ setuptools.setup( 'odoo11-addon-stock_picking_comment_template', 'odoo11-addon-stock_picking_report_custom_description', 'odoo11-addon-stock_picking_report_valued', + 'odoo11-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.cfg b/setup/stock_report_quantity_by_location/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup/stock_report_quantity_by_location/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 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, +)