diff --git a/mrp_multi_level_estimate/README.rst b/mrp_multi_level_estimate/README.rst index fac6e09dd..be7837e5d 100644 --- a/mrp_multi_level_estimate/README.rst +++ b/mrp_multi_level_estimate/README.rst @@ -14,13 +14,13 @@ MRP Multi Level Estimate :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github - :target: https://github.com/OCA/manufacture/tree/12.0/mrp_multi_level_estimate + :target: https://github.com/OCA/manufacture/tree/13.0/mrp_multi_level_estimate :alt: OCA/manufacture .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-mrp_multi_level_estimate + :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_multi_level_estimate :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/12.0 + :target: https://runbot.odoo-community.org/runbot/129/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -47,7 +47,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -63,6 +63,7 @@ Contributors ~~~~~~~~~~~~ * Lois Rilo +* Pimolnat Suntian Maintainers ~~~~~~~~~~~ @@ -85,6 +86,6 @@ Current `maintainer `__: |maintainer-LoisRForgeFlow| -This module is part of the `OCA/manufacture `_ project on GitHub. +This module is part of the `OCA/manufacture `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_multi_level_estimate/readme/CONTRIBUTORS.rst b/mrp_multi_level_estimate/readme/CONTRIBUTORS.rst index 77dfbe89e..0e3a0d76e 100644 --- a/mrp_multi_level_estimate/readme/CONTRIBUTORS.rst +++ b/mrp_multi_level_estimate/readme/CONTRIBUTORS.rst @@ -1 +1,2 @@ * Lois Rilo +* Pimolnat Suntian diff --git a/mrp_multi_level_estimate/static/description/index.html b/mrp_multi_level_estimate/static/description/index.html index aba2281ff..92a82ae50 100644 --- a/mrp_multi_level_estimate/static/description/index.html +++ b/mrp_multi_level_estimate/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

Integration for MRP Multi Level and Stock Demand Estimates system.

Table of contents

@@ -395,7 +395,7 @@ demand.

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -410,6 +410,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

Contributors

@@ -421,7 +422,7 @@ mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

LoisRForgeFlow

-

This module is part of the OCA/manufacture project on GitHub.

+

This module is part of the OCA/manufacture project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/mrp_multi_level_estimate/tests/test_mrp_multi_level_estimate.py b/mrp_multi_level_estimate/tests/test_mrp_multi_level_estimate.py index b68774266..fe0bd3ec8 100644 --- a/mrp_multi_level_estimate/tests/test_mrp_multi_level_estimate.py +++ b/mrp_multi_level_estimate/tests/test_mrp_multi_level_estimate.py @@ -48,7 +48,7 @@ class TestMrpMultiLevelEstimate(TestMrpMultiLevelCommon): "name_prefix": "W-", "type_id": cls.dr_type.id, "duration_count": 1, - "unit_of_time": WEEKLY, + "unit_of_time": str(WEEKLY), "count": 3, } ) diff --git a/oca_dependencies.txt b/oca_dependencies.txt index c3d6585a4..9fbf71fcf 100644 --- a/oca_dependencies.txt +++ b/oca_dependencies.txt @@ -1,3 +1,5 @@ # List the OCA project dependencies, one per line # Add a repository url and branch if you need a forked version stock-logistics-warehouse +server-ux +web diff --git a/setup/mrp_multi_level_estimate/odoo/addons/mrp_multi_level_estimate b/setup/mrp_multi_level_estimate/odoo/addons/mrp_multi_level_estimate new file mode 120000 index 000000000..02fe39d07 --- /dev/null +++ b/setup/mrp_multi_level_estimate/odoo/addons/mrp_multi_level_estimate @@ -0,0 +1 @@ +../../../../mrp_multi_level_estimate \ No newline at end of file diff --git a/setup/mrp_multi_level_estimate/setup.py b/setup/mrp_multi_level_estimate/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/mrp_multi_level_estimate/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)