Skip to content

Commit

Permalink
Merge PR #162 into 13.0
Browse files Browse the repository at this point in the history
Signed-off-by legalsylvain
  • Loading branch information
OCA-git-bot committed Oct 16, 2019
2 parents 4397cc1 + 0d1e737 commit b54b62b
Show file tree
Hide file tree
Showing 11 changed files with 591 additions and 0 deletions.
87 changes: 87 additions & 0 deletions company_dependent_attribute/README.rst
@@ -0,0 +1,87 @@
===========================
Company Dependent Attribute
===========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fmulti--company-lightgray.png?logo=github
:target: https://github.com/OCA/multi-company/tree/12.0/company_dependent_attribute
:alt: OCA/multi-company
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/multi-company-12-0/multi-company-12-0-company_dependent_attribute
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/133/12.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

Display company_dependent state of fields in "ir.model.fields" view

company_dependent value of a field can be overrided in any module.
Then it can be difficult to guess this value in a odoo instance with a lot of modules.

This module is mainly intended for developers


Prefixed `property_` fields are supposed to be company_dependent fields.

.. figure:: https://raw.githubusercontent.com/OCA/multi-company/12.0/company_dependent_attribute/static/description/screen1.png

the clothes do not make the man

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/multi-company/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 <https://github.com/OCA/multi-company/issues/new?body=module:%20company_dependent_attribute%0Aversion:%2012.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
~~~~~~~

* Akretion

Contributors
~~~~~~~~~~~~

Akretion

* David Béal <david.beal@akretion.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.

This module is part of the `OCA/multi-company <https://github.com/OCA/multi-company/tree/12.0/company_dependent_attribute>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions company_dependent_attribute/__init__.py
@@ -0,0 +1 @@
from . import models
15 changes: 15 additions & 0 deletions company_dependent_attribute/__manifest__.py
@@ -0,0 +1,15 @@
# © 2019 David BEAL @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Company Dependent Attribute",
"summary": "Display company dependent attribute on fields",
"version": "13.0.1.0.0",
"category": "Tools",
"author": "Akretion, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/multi-company",
"license": "AGPL-3",
"depends": ["base"],
"data": ["views/field_view.xml"],
"installable": True,
}
1 change: 1 addition & 0 deletions company_dependent_attribute/models/__init__.py
@@ -0,0 +1 @@
from . import field
19 changes: 19 additions & 0 deletions company_dependent_attribute/models/field.py
@@ -0,0 +1,19 @@
# © 2019 David BEAL @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).


from odoo import fields, models


class IrModelFields(models.Model):
_inherit = "ir.model.fields"

company_dependent = fields.Boolean(
compute="_compute_company_dependent", store=False
)

def _compute_company_dependent(self):
for rec in self:
rec.company_dependent = (
self.env[rec.model]._fields[rec.name].company_dependent
)
3 changes: 3 additions & 0 deletions company_dependent_attribute/readme/CONTRIBUTORS.rst
@@ -0,0 +1,3 @@
Akretion

* David Béal <david.beal@akretion.com>
13 changes: 13 additions & 0 deletions company_dependent_attribute/readme/DESCRIPTION.rst
@@ -0,0 +1,13 @@
Display company_dependent state of fields in "ir.model.fields" view

company_dependent value of a field can be overrided in any module.
Then it can be difficult to guess this value in a odoo instance with a lot of modules.

This module is mainly intended for developers


Prefixed `property_` fields are supposed to be company_dependent fields.

.. figure:: ../static/description/screen1.png

the clothes do not make the man
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b54b62b

Please sign in to comment.