diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ad40abe9c..6794934ac 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200108.3 \ No newline at end of file +13.0.20200108.4 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index ad4dafe73..58f51a3cf 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -14,6 +14,7 @@ setuptools.setup( 'odoo13-addon-stock_change_qty_reason', 'odoo13-addon-stock_demand_estimate', 'odoo13-addon-stock_inventory_chatter', + 'odoo13-addon-stock_inventory_exclude_sublocation', 'odoo13-addon-stock_inventory_lockdown', 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', diff --git a/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation b/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation new file mode 120000 index 000000000..9db8dc31c --- /dev/null +++ b/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation @@ -0,0 +1 @@ +../../../../stock_inventory_exclude_sublocation \ No newline at end of file diff --git a/setup/stock_inventory_exclude_sublocation/setup.py b/setup/stock_inventory_exclude_sublocation/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_inventory_exclude_sublocation/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)