diff --git a/operating_unit_access_all/README.html b/operating_unit_access_all/README.html new file mode 100644 index 0000000000..6c02a4626d --- /dev/null +++ b/operating_unit_access_all/README.html @@ -0,0 +1,675 @@ + + + + + + + Access all Operating Units + + + +
+

Access all Operating Units

+ + +

+ Beta + License: AGPL-3 + OCA/operating-unit + Translate me on Weblate + Try me on Runbot +

+

+ This module allow a user to have Access all operating units (master data) + without having to add OUs in user setting. +

+

Table of contents

+
+ +
+
+

Configuration

+

To configure a user to have access to all operating units:

+ +
+
+

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. +

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Ecosoft
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ Odoo Community Association +

+ OCA, or the Odoo Community Association, is a nonprofit organization whose + mission is to support the collaborative development of Odoo features and + promote its widespread use. +

+

+ Current + maintainer: +

+

+ kittiu +

+

+ This module is part of the + OCA/operating-unit + project on GitHub. +

+

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

+
+
+
+ + diff --git a/operating_unit_access_all/README.rst b/operating_unit_access_all/README.rst new file mode 100644 index 0000000000..1357141e1c --- /dev/null +++ b/operating_unit_access_all/README.rst @@ -0,0 +1,94 @@ +========================== +Access all Operating Units +========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:41c56b0f273fa8d10d449c730e41a79e446fc826dd91a8b0264e66eda34109a0 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Foperating--unit-lightgray.png?logo=github + :target: https://github.com/OCA/operating-unit/tree/16.0/operating_unit_access_all + :alt: OCA/operating-unit +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/operating-unit-16-0/operating-unit-16-0-operating_unit_access_all + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/operating-unit&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allow a user to have Access all operating units (master data) +without having to add OUs in user setting. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + + +To configure a user to have access to all operating units: + +* Go to *Settings / Users & Companies / Users* +* For a user, select checkbox "Access all Operating Units" + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Ecosoft + +Contributors +~~~~~~~~~~~~ + +* Kitti U. + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-kittiu| image:: https://github.com/kittiu.png?size=40px + :target: https://github.com/kittiu + :alt: kittiu + +Current `maintainer `__: + +|maintainer-kittiu| + +This module is part of the `OCA/operating-unit `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/operating_unit_access_all/__init__.py b/operating_unit_access_all/__init__.py new file mode 100644 index 0000000000..c71289ab17 --- /dev/null +++ b/operating_unit_access_all/__init__.py @@ -0,0 +1 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/operating_unit_access_all/__manifest__.py b/operating_unit_access_all/__manifest__.py new file mode 100644 index 0000000000..430b813560 --- /dev/null +++ b/operating_unit_access_all/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2021 Ecosoft Co., Ltd. (http://ecosoft.co.th) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Access all Operating Units", + "version": "16.0.1.0.0", + "author": "Ecosoft,Odoo Community Association (OCA)", + "category": "Generic", + "license": "AGPL-3", + "website": "https://github.com/OCA/operating-unit", + "depends": ["operating_unit"], + "data": [ + "security/operating_unit_security.xml", + ], + "installable": True, + "maintainers": ["kittiu"], +} diff --git a/operating_unit_access_all/readme/CONFIGURE.rst b/operating_unit_access_all/readme/CONFIGURE.rst new file mode 100644 index 0000000000..36a1fe90a2 --- /dev/null +++ b/operating_unit_access_all/readme/CONFIGURE.rst @@ -0,0 +1,5 @@ + +To configure a user to have access to all operating units: + +* Go to *Settings / Users & Companies / Users* +* For a user, select checkbox "Access all Operating Units" diff --git a/operating_unit_access_all/readme/CONTRIBUTORS.rst b/operating_unit_access_all/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..6ce956d961 --- /dev/null +++ b/operating_unit_access_all/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Kitti U. diff --git a/operating_unit_access_all/readme/DESCRIPTION.rst b/operating_unit_access_all/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..49d47ea135 --- /dev/null +++ b/operating_unit_access_all/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module allow a user to have Access all operating units (master data) +without having to add OUs in user setting. diff --git a/operating_unit_access_all/security/operating_unit_security.xml b/operating_unit_access_all/security/operating_unit_security.xml new file mode 100644 index 0000000000..12198fc7d0 --- /dev/null +++ b/operating_unit_access_all/security/operating_unit_security.xml @@ -0,0 +1,15 @@ + + + + Access all Operating Units + + + + + + + diff --git a/operating_unit_access_all/static/description/icon.png b/operating_unit_access_all/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/operating_unit_access_all/static/description/icon.png differ diff --git a/operating_unit_access_all/static/description/index.html b/operating_unit_access_all/static/description/index.html new file mode 100644 index 0000000000..dc709f0228 --- /dev/null +++ b/operating_unit_access_all/static/description/index.html @@ -0,0 +1,433 @@ + + + + + + +Access all Operating Units + + + +
+

Access all Operating Units

+ + +

Beta License: AGPL-3 OCA/operating-unit Translate me on Weblate Try me on Runboat

+

This module allow a user to have Access all operating units (master data) +without having to add OUs in user setting.

+

Table of contents

+ +
+

Configuration

+

To configure a user to have access to all operating units:

+
    +
  • Go to Settings / Users & Companies / Users
  • +
  • For a user, select checkbox “Access all Operating Units”
  • +
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Ecosoft
  • +
+
+ +
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

kittiu

+

This module is part of the OCA/operating-unit project on GitHub.

+

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

+
+
+
+ + diff --git a/setup/operating_unit_access_all/odoo/addons/operating_unit_access_all b/setup/operating_unit_access_all/odoo/addons/operating_unit_access_all new file mode 120000 index 0000000000..e330dac938 --- /dev/null +++ b/setup/operating_unit_access_all/odoo/addons/operating_unit_access_all @@ -0,0 +1 @@ +../../../../operating_unit_access_all \ No newline at end of file diff --git a/setup/operating_unit_access_all/setup.py b/setup/operating_unit_access_all/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/operating_unit_access_all/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)