diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 973a1330f..7aa5b8a74 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200401.0 \ No newline at end of file +12.0.20200423.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index e0b1e8c49..9f87131fc 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -33,6 +33,7 @@ setuptools.setup( 'odoo12-addon-stock_inventory_verification_request', 'odoo12-addon-stock_location_limit_product', 'odoo12-addon-stock_location_lockdown', + 'odoo12-addon-stock_location_template', 'odoo12-addon-stock_location_zone', 'odoo12-addon-stock_move_location', 'odoo12-addon-stock_mts_mto_rule', diff --git a/setup/stock_location_template/odoo/addons/stock_location_template b/setup/stock_location_template/odoo/addons/stock_location_template new file mode 120000 index 000000000..61f32bd2b --- /dev/null +++ b/setup/stock_location_template/odoo/addons/stock_location_template @@ -0,0 +1 @@ +../../../../stock_location_template \ No newline at end of file diff --git a/setup/stock_location_template/setup.py b/setup/stock_location_template/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_location_template/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)