diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index aa35eaac0..973a1330f 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200330.0 \ No newline at end of file +12.0.20200401.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index ab613748b..e0b1e8c49 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -29,6 +29,7 @@ setuptools.setup( 'odoo12-addon-stock_inventory_exclude_sublocation', 'odoo12-addon-stock_inventory_lockdown', 'odoo12-addon-stock_inventory_preparation_filter', + 'odoo12-addon-stock_inventory_valuation_location', 'odoo12-addon-stock_inventory_verification_request', 'odoo12-addon-stock_location_limit_product', 'odoo12-addon-stock_location_lockdown', diff --git a/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location b/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location new file mode 120000 index 000000000..73a2765f3 --- /dev/null +++ b/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location @@ -0,0 +1 @@ +../../../../stock_inventory_valuation_location \ No newline at end of file diff --git a/setup/stock_inventory_valuation_location/setup.py b/setup/stock_inventory_valuation_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_inventory_valuation_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)