diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index cc2f171c2..5085ed6f3 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191224.0 \ No newline at end of file +12.0.20191230.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 90d624de6..9e3b6fdc5 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -20,6 +20,7 @@ setuptools.setup( 'odoo12-addon-stock_change_qty_reason', 'odoo12-addon-stock_cycle_count', 'odoo12-addon-stock_demand_estimate', + 'odoo12-addon-stock_demand_estimate_matrix', 'odoo12-addon-stock_inventory_chatter', 'odoo12-addon-stock_inventory_cost_info', 'odoo12-addon-stock_inventory_discrepancy', diff --git a/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix b/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix new file mode 120000 index 000000000..73de46a1c --- /dev/null +++ b/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix @@ -0,0 +1 @@ +../../../../stock_demand_estimate_matrix \ No newline at end of file diff --git a/setup/stock_demand_estimate_matrix/setup.py b/setup/stock_demand_estimate_matrix/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_demand_estimate_matrix/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)