diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index e29301b..43b1448 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20191102.0 \ No newline at end of file +11.0.20200127.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index d694a83..76e094f 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo11-addon-stock_account_quantity_history_location', 'odoo11-addon-stock_account_valuation_report', + 'odoo11-addon-stock_inventory_valuation_report', 'odoo11-addon-stock_move_value_report', 'odoo11-addon-stock_picking_comment_template', 'odoo11-addon-stock_picking_report_custom_description', diff --git a/setup/stock_inventory_valuation_report/odoo/addons/stock_inventory_valuation_report b/setup/stock_inventory_valuation_report/odoo/addons/stock_inventory_valuation_report new file mode 120000 index 0000000..663d8c8 --- /dev/null +++ b/setup/stock_inventory_valuation_report/odoo/addons/stock_inventory_valuation_report @@ -0,0 +1 @@ +../../../../stock_inventory_valuation_report \ No newline at end of file diff --git a/setup/stock_inventory_valuation_report/setup.cfg b/setup/stock_inventory_valuation_report/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup/stock_inventory_valuation_report/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/stock_inventory_valuation_report/setup.py b/setup/stock_inventory_valuation_report/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_inventory_valuation_report/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)