diff --git a/setup/web_button_visibility/odoo/addons/web_button_visibility b/setup/web_button_visibility/odoo/addons/web_button_visibility new file mode 120000 index 000000000..c39564488 --- /dev/null +++ b/setup/web_button_visibility/odoo/addons/web_button_visibility @@ -0,0 +1 @@ +../../../../web_button_visibility \ No newline at end of file diff --git a/setup/web_button_visibility/setup.py b/setup/web_button_visibility/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_button_visibility/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/web_button_visibility/README.rst b/web_button_visibility/README.rst new file mode 100644 index 000000000..ea073adac --- /dev/null +++ b/web_button_visibility/README.rst @@ -0,0 +1,103 @@ +===================== +Web Button Visibility +===================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:51c5a04adf49e769ae8b4a2b41ca6811221eb0b4823053a021d11fcad8005f21 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/14.0/web_button_visibility + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_button_visibility + :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/web&target_branch=14.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to hide specific buttons for specific user groups if specific conditions are verified. + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +This module can be useful in combination with customized workflows +(eg: module base_substate) to avoid user from performing certain actions if a specific +condition is verified. + +Usage +===== + +Go to Settings > Technical > Models, open a model + +In tab "Hide button rule", add a button name and a group, and optionally a condition + +For users of that group and as long as the condition is met, button is not visible. + +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 +~~~~~~~ + +* Ilyas +* ooops404 + +Contributors +~~~~~~~~~~~~ + +* `Ooops404 `__: + + * Ilyas + +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-ilyasProgrammer| image:: https://github.com/ilyasProgrammer.png?size=40px + :target: https://github.com/ilyasProgrammer + :alt: ilyasProgrammer + +Current `maintainer `__: + +|maintainer-ilyasProgrammer| + +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_button_visibility/__init__.py b/web_button_visibility/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/web_button_visibility/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/web_button_visibility/__manifest__.py b/web_button_visibility/__manifest__.py new file mode 100644 index 000000000..04ba51a1e --- /dev/null +++ b/web_button_visibility/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2023 ooops404 +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html) +{ + "name": "Web Button Visibility", + "category": "Web", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "author": "Ilyas, ooops404, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/web", + "maintainers": ["ilyasProgrammer"], + "depends": ["web"], + "data": [ + "security/ir.model.access.csv", + "views/views.xml", + ], + "demo": ["data/demo.xml"], +} diff --git a/web_button_visibility/data/demo.xml b/web_button_visibility/data/demo.xml new file mode 100644 index 000000000..828c98bd9 --- /dev/null +++ b/web_button_visibility/data/demo.xml @@ -0,0 +1,60 @@ + + + + + res.users.demo.form1 + res.users + +
+ + + + + +