diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 3015f8025..caef50cc5 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.20190703.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 791212227..66c041fc2 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -16,6 +16,7 @@ setuptools.setup( 'odoo12-addon-stock_demand_estimate', 'odoo12-addon-stock_inventory_chatter', 'odoo12-addon-stock_inventory_exclude_sublocation', + 'odoo12-addon-stock_inventory_lockdown', 'odoo12-addon-stock_inventory_preparation_filter', 'odoo12-addon-stock_mts_mto_rule', 'odoo12-addon-stock_orderpoint_manual_procurement', diff --git a/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown b/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown new file mode 120000 index 000000000..98ace7ae0 --- /dev/null +++ b/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown @@ -0,0 +1 @@ +../../../../stock_inventory_lockdown \ No newline at end of file diff --git a/setup/stock_inventory_lockdown/setup.py b/setup/stock_inventory_lockdown/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_inventory_lockdown/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)