24 lines
883 B
Python
24 lines
883 B
Python
{
|
|
'name': 'Quality Button Restriction',
|
|
'version': '18.0.1.0.0',
|
|
'category': 'Quality',
|
|
'summary': 'Restrict Quality Checks button to Quality Users only',
|
|
'description': """
|
|
This module decouples 'Quality User' rights from 'Inventory User' and 'Manufacturing User' roles.
|
|
|
|
By default in Odoo, Inventory and Manufacturing users automatically inherit Quality User rights,
|
|
which makes the "Quality Checks" button visible to them.
|
|
|
|
This module removes this inheritance, so users must be explicitly assigned "Quality User" rights
|
|
to see the "Quality Checks" button and access other quality features.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'depends': ['quality', 'stock', 'mrp', 'quality_mrp'],
|
|
'data': [
|
|
'security/quality_security.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|