[ADD] web_button_invisible

pull/2631/head
Ilyas 2023-09-29 15:18:49 +02:00
parent 50cc4cd30d
commit 96df04e5ab
19 changed files with 973 additions and 0 deletions

View File

@ -0,0 +1 @@
../../../../web_button_visibility

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

View File

@ -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 <https://github.com/OCA/web/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 <https://github.com/OCA/web/issues/new?body=module:%20web_button_visibility%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* Ilyas
* ooops404
Contributors
~~~~~~~~~~~~
* `Ooops404 <https://www.ooops404.com>`__:
* Ilyas <irazor147@gmail.com>
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 <https://odoo-community.org/page/maintainer-role>`__:
|maintainer-ilyasProgrammer|
This module is part of the `OCA/web <https://github.com/OCA/web/tree/14.0/web_button_visibility>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@ -0,0 +1 @@
from . import models

View File

@ -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"],
}

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_users_demo_form" model="ir.ui.view">
<field name="name">res.users.demo.form1</field>
<field name="model">res.users</field>
<field name="arch" type="xml">
<form string="Contact">
<group>
<group>
<field name="name" />
<field name="type" />
<field name="active" />
<button
name="action_archive"
type="object"
string="Archive"
attrs="{'invisible': [('active', '=', False), ('name', '=', 'abc')]}"
/>
</group>
</group>
</form>
</field>
</record>
<record id="view_users_demo_form2" model="ir.ui.view">
<field name="name">res.users.demo.form2</field>
<field name="model">res.users</field>
<field name="arch" type="xml">
<form string="Contact">
<group>
<group>
<field name="name" />
<field name="type" />
<field name="active" />
<button name="action_archive" type="object" string="Archive" />
</group>
</group>
</form>
</field>
</record>
<record id="view_users_demo_form3" model="ir.ui.view">
<field name="name">res.users.demo.form3</field>
<field name="model">res.users</field>
<field name="arch" type="xml">
<form string="Contact">
<group>
<group>
<field name="name" />
<field name="type" />
<field name="active" />
<button name="action_unarchive" type="object" />
</group>
</group>
</form>
</field>
</record>
</odoo>

View File

@ -0,0 +1,3 @@
from . import base
from . import hide_button_rule
from . import ir_model

View File

@ -0,0 +1,107 @@
# Copyright 2023 ooops404
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
import json
from lxml import etree
from odoo import api, models
from odoo.osv import expression
from odoo.tools.safe_eval import safe_eval
class Base(models.AbstractModel):
_inherit = "base"
@api.model
def fields_view_get(
self, view_id=None, view_type=False, toolbar=False, submenu=False
):
arch = super().fields_view_get(
view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu
)
if view_type not in ["form"]:
return arch
if self.env.user.has_group("base.group_user"):
restrictions = self.env["model.button.rule"].search(
[
("model_name", "=", self._name),
("group_ids", "in", self.env.user.groups_id.ids),
("action", "=", "hide"),
]
)
if restrictions:
return self.create_hide_button_field(restrictions, arch)
return arch
def create_hide_button_field(self, restrictions, arch):
"""Create a computed field which will be used in attrs of button to hide it"""
doc = etree.XML(arch["arch"])
for r in restrictions:
for node in doc.xpath("//button[@name='%s']" % r.button_name):
field_node_str = "<field name='%s' invisible='1' />"
field_node_mod = bytes(
'{"invisible": true,"column_invisible": true}', "utf-8"
)
modifiers = json.loads(node.get("modifiers", "{}"))
visibility_field_name = r.get_button_field_name()
if (
modifiers
and modifiers.get("invisible")
and type(modifiers["invisible"]) == list
):
norm_dom = expression.normalize_domain(modifiers["invisible"])
modifiers["invisible"] = expression.OR(
[norm_dom, [(visibility_field_name, "=", True)]]
)
else:
modifiers["invisible"] = [(visibility_field_name, "=", True)]
node.set("modifiers", json.dumps(modifiers))
new_node = etree.fromstring(field_node_str % visibility_field_name)
new_node.set("invisible", "1")
new_node.set("modifiers", field_node_mod)
node.getparent().append(new_node)
arch["arch"] = etree.tostring(doc)
return arch
def _compute_hide_button(self):
"""Compute if button needs to be hidden"""
restrictions = self.env["model.button.rule"].search(
[("model_name", "=", self._name)]
)
for record in self:
for r in restrictions:
if r.button_visibility_field_id:
field_name = r.button_visibility_field_id.name
record[field_name] = False
if r.condition_domain:
filtered_rec_id = record.filtered_domain(
safe_eval(r.condition_domain)
)
if filtered_rec_id and r.group_ids & self.env.user.groups_id:
record[field_name] = True
elif r.group_ids and r.group_ids & self.env.user.groups_id:
record[field_name] = True
def default_get(self, fields_list):
res = super(Base, self).default_get(fields_list)
if self.env.user.has_group("base.group_user"):
vals = self._default_get_compute_hide_button_fields()
if vals:
res.update(vals)
return res
def _default_get_compute_hide_button_fields(self):
"""Required to hide button at the moment of new record creation"""
restrictions = self.env["model.button.rule"].search(
[("model_name", "=", self._name)]
)
values = {}
if not restrictions:
return values
for r in restrictions:
if r.button_visibility_field_id:
field_name = r.button_visibility_field_id.name
values[field_name] = False
if r.group_ids and r.group_ids & self.env.user.groups_id:
values[field_name] = True
return values

View File

@ -0,0 +1,73 @@
# Copyright 2023 ooops404
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
from odoo import _, api, exceptions, fields, models
from odoo.tools.safe_eval import safe_eval
class ModelButtonRule(models.Model):
_name = "model.button.rule"
_description = "Rule to hide a button"
button_name = fields.Char(required=True)
action = fields.Selection([("hide", "Hide")], default="hide", required=True)
model_id = fields.Many2one(
"ir.model",
ondelete="cascade",
index=True,
)
model_name = fields.Char(related="model_id.model")
condition_domain = fields.Char()
group_ids = fields.Many2many("res.groups", required=True)
# generated technical fields used in form attrs:
button_visibility_field_id = fields.Many2one("ir.model.fields", ondelete="cascade")
@api.model
def create(self, vals):
rec = super().create(vals)
if not hasattr(self.env[rec.model_name], rec.button_name):
raise exceptions.ValidationError(
_("Model %s has no method %s." % (rec.model_name, rec.button_name))
)
rec.create_restriction_field()
return rec
def create_restriction_field(self):
"""Create computed visibility field to hide button"""
field_name = self.get_button_field_name()
field_id = self.env["ir.model.fields"].search(
[("name", "=", field_name), ("state", "=", "manual")]
)
rec_model_id = self.model_id.id
rec_field_name = "button_visibility_field_id"
if not field_id:
deps = ""
if self.condition_domain:
deps = ",".join(
[
r[0] if r[0] not in ["id"] else ""
for r in safe_eval(self.condition_domain)
]
)
field_id = self.env["ir.model.fields"].create(
{
"name": field_name,
"model_id": rec_model_id,
"state": "manual",
"field_description": "%s %s hide button field"
% (self.model_name, self.button_name),
"store": False,
"ttype": "boolean",
"compute": "for r in self: r._compute_hide_button()",
"depends": deps,
}
)
self[rec_field_name] = field_id
def get_button_field_name(self):
# e.g. x_computed_button_hide_sale_order_action_draft
return "x_computed_button_hide_%s_%s" % (
self.model_name.replace(".", "_"),
self.button_name,
)

View File

@ -0,0 +1,14 @@
# Copyright 2023 ooops404
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
from odoo import fields, models
class IrModel(models.Model):
_inherit = "ir.model"
hide_button_rule_ids = fields.One2many(
"model.button.rule",
"model_id",
)

View File

@ -0,0 +1,3 @@
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.

View File

@ -0,0 +1,3 @@
* `Ooops404 <https://www.ooops404.com>`__:
* Ilyas <irazor147@gmail.com>

View File

@ -0,0 +1 @@
This module allows to hide specific buttons for specific user groups if specific conditions are verified.

View File

@ -0,0 +1,5 @@
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.

View File

@ -0,0 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
hbr1,hbr1,model_model_button_rule,base.group_system,1,1,1,1
hbr2,hbr2,model_model_button_rule,base.group_user,1,0,0,0
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 hbr1 hbr1 model_model_button_rule base.group_system 1 1 1 1
3 hbr2 hbr2 model_model_button_rule base.group_user 1 0 0 0

View File

@ -0,0 +1,441 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
<title>Web Button Visibility</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="web-button-visibility">
<h1 class="title">Web Button Visibility</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:51c5a04adf49e769ae8b4a2b41ca6811221eb0b4823053a021d11fcad8005f21
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/14.0/web_button_visibility"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_button_visibility"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=14.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module allows to hide specific buttons for specific user groups if specific conditions are verified.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#use-cases-context" id="toc-entry-1">Use Cases / Context</a></li>
<li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="use-cases-context">
<h1><a class="toc-backref" href="#toc-entry-1">Use Cases / Context</a></h1>
<p>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.</p>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
<p>Go to Settings &gt; Technical &gt; Models, open a model</p>
<p>In tab “Hide button rule”, add a button name and a group, and optionally a condition</p>
<p>For users of that group and as long as the condition is met, button is not visible.</p>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
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
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_button_visibility%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
<ul class="simple">
<li>Ilyas</li>
<li>ooops404</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
<ul class="simple">
<li><a class="reference external" href="https://www.ooops404.com">Ooops404</a>:<ul>
<li>Ilyas &lt;<a class="reference external" href="mailto:irazor147&#64;gmail.com">irazor147&#64;gmail.com</a>&gt;</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>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.</p>
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
<p><a class="reference external image-reference" href="https://github.com/ilyasProgrammer"><img alt="ilyasProgrammer" src="https://github.com/ilyasProgrammer.png?size=40px" /></a></p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/14.0/web_button_visibility">OCA/web</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,2 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import test_button_invisible

View File

@ -0,0 +1,78 @@
# Copyright 2023 ooops404
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.exceptions import ValidationError
from odoo.tests import common
class TestButtonInvisible(common.TransactionCase):
def setUp(self):
super(TestButtonInvisible, self).setUp()
self.res_users_model = self.env["ir.model"].search(
[("model", "=", "res.users")]
)
self.group_user = self.env.ref("base.group_user")
self.view_users_form1 = self.env.ref(
"web_button_visibility.view_users_demo_form"
)
self.view_users_form2 = self.env.ref(
"web_button_visibility.view_users_demo_form2"
)
self.view_users_demo_form3 = self.env.ref(
"web_button_visibility.view_users_demo_form3"
)
self.admin_user = self.env.ref("base.user_admin")
self.btn_rule_1 = self.env["model.button.rule"].create(
{
"button_name": "action_archive",
"model_id": self.res_users_model.id,
"group_ids": [(6, 0, self.group_user.ids)],
}
)
self.btn_rule_2 = self.env["model.button.rule"].create(
{
"button_name": "action_show_groups",
"model_id": self.res_users_model.id,
"group_ids": [(6, 0, self.group_user.ids)],
"condition_domain": [("name", "!=", "abc")],
}
)
self.btn_rule_3 = self.env["model.button.rule"].create(
{
"button_name": "action_archive",
"model_id": self.res_users_model.id,
"group_ids": [(6, 0, self.group_user.ids)],
}
)
def test_all(self):
# action/button/method should exist
with self.assertRaises(ValidationError):
self.env["model.button.rule"].create(
{
"button_name": "action_that_do_not_exist",
"model_id": self.res_users_model.id,
"group_ids": [(6, 0, self.group_user.ids)],
}
)
# trigger fields_view_get
arch1 = self.admin_user.fields_view_get(
view_id=self.view_users_form1.id, view_type="form"
)
self.assertIn(
"x_computed_button_hide_res_users_action_archive",
str(arch1["arch"]),
"Created field is not present in the view",
)
self.admin_user.fields_view_get(
view_id=self.view_users_demo_form3.id, view_type="form"
)
arch3 = self.admin_user.fields_view_get(
view_id=self.view_users_form2.id, view_type="form"
)
self.assertIn(
"x_computed_button_hide_res_users_action_archive",
str(arch3["arch"]),
"Created field is not present in the view",
)
self.admin_user.read()
self.env["res.users"].create({"name": "test", "login": "test"})

View File

@ -0,0 +1,52 @@
<odoo>
<record id="view_model_form_inherit" model="ir.ui.view">
<field name="name">view.model.form.inherit</field>
<field name="model">ir.model</field>
<field name="inherit_id" ref="base.view_model_form" />
<field name="arch" type="xml">
<xpath expr="//notebook/page[@name='fields']" position="after">
<page string="Hide Button Rules" name="hide_button_rules_page">
<field
name="hide_button_rule_ids"
nolabel="1"
context="{'default_required_model_id': model}"
>
<tree>
<field name="model_id" invisible="1" />
<field name="model_name" invisible="1" />
<field name="button_name" />
<field name="condition_domain" />
<field name="group_ids" widget="many2many_tags" />
</tree>
</field>
</page>
</xpath>
</field>
</record>
<record id="view_hide_button_rule_form" model="ir.ui.view">
<field name="name">model.button.rule.form.view</field>
<field name="model">model.button.rule</field>
<field name="arch" type="xml">
<form>
<sheet>
<group><group>
<field name="model_id" invisible="1" />
<field name="model_name" invisible="1" />
<field name="button_name" />
<field
name="condition_domain"
widget="domain"
options="{'model': 'model_name', 'in_dialog': True}"
/>
<field name="group_ids" widget="many2many_tags" />
</group></group>
</sheet>
</form>
</field>
</record>
</odoo>